为了账号安全,请及时绑定邮箱和手机立即绑定

照着视频写的,就是没有3D效果,不知怎么回事?求解

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>动画效果</title>

<style>

#my3dspace{

-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: black;

color: #fff;

font-weight: bold;

font-size: 360px;

line-height: 360px;

text-align: center;

position: absolute;

}

#page1{

-webkit-tansform-origin:bottom;

-webkit-tansition:-webkit-transform 1s linear;

}

#page2,#page3,#page4,#page5,#page6{

-webkit-tansform-origin:bottom;

-webkit-tansition:-webkit-transform 1s linear;

-webkit-transform:rotateX(90deg);

}

.op{

margin: 10px auto;

text-align: center;

}

</style>

</head>

<body>

<div id="my3dspace">

<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:prev()">prev</a>

<a href="javascript:next()">next</a>

</div>

<script>

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)";

}

function prev(){

if(curIndex == 1) return;

var curPage = document.getElementById('page'+curIndex);

curPage.style.webkitTransform = "rotateX(90deg)";

curIndex--;

var prevPage = document.getElementById("page"+curIndex);

prevPage.style.webkitTransform = "rotateX(0deg)";

}

</script>

</body>

</html>


正在回答

举报

0/150
提交
取消

照着视频写的,就是没有3D效果,不知怎么回事?求解

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信