我的在浏览器 没效果啊
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>3d效果</title>
<style type="text/css">
.wind{
-moz-perspective:800;
-moz-perspective-origin:50% 50%;
-moz-perspective-style:-moz-preserve-3d;
}
.block{
height:500px;
width:500px;
background-color:#06F;
margin:100px auto;
-moz-transform:rotateZ(45deg);
}
</style>
</head>
<body>
<div class="wind">
<div class="block"></div>
</div>
</body>
</html>