为什么我这点击后没反应?求解答
<!DOCTYPE html>
<html>
<head>
<meta charset="{CHARSET}">
<title></title>
<style>
#my3d {
-webkit-perspective: 800;
-webkit-perspective-origin: 50% 50%;
overflow: hidden;
/*不影响其他属性*/
}
#pagegroup {
width: 400px;
height: 400px;
margin: 0 auto;
-webkit-transform-style: preserve-3d;
position: relative;
}
.page {
width: 360px;
height: 360px;
padding: 20px;
background-color: black;
color: white;
font-size: bold;
font-size: 360px;
line-height: 360px;
text-align: center;
position: absolute;
}
#page1 {
-webkit-transform-origin: bottom;
-webkit-transition: -webkit-transform 1s linear;
}
#page2,
#page3,
#page4,
#page5,
#page6 {
-webkit-transform-origin: bottom;
-webkit-transition: -webkit-transform 1s linear;
-webkit-transform: rotateX(90deg);
}
#ap {
text-align: center;
margin: 40px auto;
}
</style>
<script type="text/javascript">
var curIndex = 1;
function next() {
if(curIndex == 6) {
return;
}
var curPage = document.getElementById("page" + curIndex);
curPage.style.webkitTransform = "rotateX(-90deg)";
curIndex++;
var nextPage = document.getElementById("page" + curIndex);
nextPage.style.webkitTransform = "rotateX(0deg)";
}
funtion prav() {
if(curIndex == 6) {
return;
}
var curPage = document.getElementById("page" + curIndex);
curPage.style.webkitTransform = "rotateX(90deg)";
curIndex--;
var pravPage = document.getElementById("page" + curIndex);
pravPage.style.webkitTransform = "rotateX(0deg)";
}
</script>
</head>
<body>
<div id="my3d">
<div id="pagegroup">
<div class="page" id="page1">1</div>
<div class="page" id="page2">2</div>
<div class="page" id="page3">3</div>
<div class="page" id="page4">4</div>
<div class="page" id="page5">5</div>
<div class="page" id="page6">6</div>
</div>
<div id="ap">
<a href="javascipt:next()">next</a> <a href="javascipt:prav()">pravious</a>
</div>
</div>
</body>
</html>