问答详情
源自:2-2 实际创建3D场景

怎么出不来?哪里出错了?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>3D</title>
    <style>
        #experiment{
            -webkit-perspective:800;
            -webkit-perspective-arigin:50% 50%;
            -webkit-transform-style:-webkit-preserve-3d;
        }
        #block{
            width:100px;
            height:100px;
            background-color:#93C;
            margin:100px auto;
            
            -webkit-transform:retateX(45deg);
        }
    
    </style>
</head>

<body>
    <div id="experiment">
        <div id="block">
        </div>
    </div>
</body>
</html>

提问者:poetaster 2015-10-15 20:05

个回答

  • echo_kinchao
    2015-10-22 14:31:57
    已采纳

    写错字了

  • poetaster
    2015-10-15 20:31:12

     -webkit-transform:retateX(45deg)应该是rotate,视频太糊我看错了、、、