zoukankan      html  css  js  c++  java
  • CSS property: webkitbackfacevisibility

    Description

    Determines whether or not a transformed element is visible when it is not facing the screen.

    Use this property to specify whether or not an element is visible when it is not facing the screen. For example, if the identity transform is set, an element faces the screen; otherwise, it may face away from the screen. For example, applying a rotation about y of 180 degrees in the absence of any other transforms causes an element to face away from the screen.

    This property is useful when you place two elements back to back, as you would do to create a playing card. Without this property, the front and back elements could at times switch places during an animation to flip the card. Another example is creating a box out of six elements whose outside and inside faces can be viewed. This is useful when creating the backdrop for a three-dimensional stage.

    Syntax

    -webkit-backface-visibility: <visibility>;

    Values<visibility>

    Determines whether or not the back face of a transformed element is visible.

    visible (by default)The element is always visible even when it is not facing the screen.hiddenThe element is invisible if it is not facing the screen.Versions


  • 相关阅读:
    九九乘法表及双色球
    错误 “SCRIPT7002: XMLHttpRequest: 网络错误 0x2ef3, ie浏览器兼容问题
    隐藏ie input的X和眼睛图标
    vue-cli解决兼容ie的es6+api问题
    git 本地tag和远程tag对应不上 vscode里pull不下代码
    git 计算commit
    git 查看对比的方法log diff
    git 版本回退方法
    git rebase的使用
    git 常规操作
  • 原文地址:https://www.cnblogs.com/danghuijian/p/4399942.html
Copyright © 2011-2022 走看看