怎么没有出来 我用的是火狐
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>3d 数字变换</title>
<style type="text/css">
.box{-moz-perspective:800px;
-moz-perspective-orign:50% 50%;
overflow: hidden;}
#pagegroup{
width:400px;height: 400px;
-moz-transform-style:preserve-3d;
/*position: relative;*/
margin:0 auto;
}
.page{width:360px;height: 360px; background-color: black;font-size: 360px;line-heignt:360px;color: white; text-align: center;/*position: absolute;*/
}
#page1{-moz-transform-orign:bottom;
-moz-transition:bottom 2s linear;}
#page2,#page3,#page4,#page5,#page6{
-moz-transform-orign:bottom;
-moz-transition:bottom 2s linear;
-moz-transform:rotateX(90deg);
}
.op{text-align:center}
</style>
<script type="text/javascript">
var curIndex = 1;
function next(){
if(curIndex==6)
{
return;
}
var curPage = document.getElementById("page"+curIndex);
curPage.style.mozTransform = "rotateX(-90deg)";
curIndex++;
var nextPage = document.getElementById("page"+curIndex);
nextPage.style.mozTransform = "rotateX(0deg)";
}
function pre(){
if(curIndex==1)
{
return;
}
var curPage = document.getElementById("page"+curIndex);
curPage.style.mozTransform = "rotateX(90deg)";
curIndex--;
var nextPage = document.getElementById("page"+curIndex);
nextPage.style.mozTransform = "rotateX(0deg)";
}
</script>
</head>
<body>
<div>
<div id="pagegroup">
<div id="page1">1</div>
<div id="page2">2</div>
<div id="page3">3</div>
<div id="page4">4</div>
<div id="page5">5</div>
<div id="page6">6</div>
</div>
</div>
<div>
<a href="javascript:next()">下一张</a>
<a href="javascript:pre()">上一张</a>
</div>
</body>
</html>