原生JS实现翻书特效
短信预约 -IT技能 免费直播动态提醒
本文给大家分享一个用原生JS实现的翻书效果图,效果如下:
实现代码如下,欢迎大家复制粘贴。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>原生JS实现翻书特效</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
list-style: none;
}
#btn {
width: 50px;
height: 40px;
line-height: 40px;
position: relative;
left: 50%;
margin-left: -25px;
top: 100px;
}
#book {
width: 600px;
height: 400px;
position: absolute;
left: 50%;
top: 50%;
margin: -200px 0 0 -300px;
border: 1px solid black;
background: url(images/0.jpg);
}
#rightPage {
width: 50%;
height: 100%;
position: absolute;
left: 50%;
z-index: 2;
transition: 0.5s;
transform: perspective(800px) rotateY(0px);
transform-origin: left center;
background: black;
transform-style: preserve-3d;
}
#rightPage #topNode {
position: absolute;
width: 100%;
height: 100%;
background: url(images/0.jpg) 300px 0;
transform: translateZ(1px);
}
#rightPage #bottomNode {
position: absolute;
width: 100%;
height: 100%;
background: url(images/2.jpg) 0 0;
transform: translateZ(-1px) scaleX(-1);
}
#rightOtherPage {
position: absolute;
left: 50%;
height: 100%;
width: 50%;
background: url(images/2.jpg) 300px 0;
z-index: 1;
}
</style>
</head>
<body>
<input type='button' value='下一页' id='btn'>
<div id='book'>
<div id='rightPage'>
<div id='topNode'></div>
<div id='bottomNode'></div>
</div>
<div id='rightOtherPage'></div>
</div>
<script type="text/javascript">
var index = 0;
var flag = false;
btn.onclick = function () {
if (flag) return;
flag = true;
index++;
rightPage.style.transition = '0.5s';
rightPage.style.transform = 'perspective(800px) rotateY(-180deg)';
setTimeout(function () {
// 翻页后瞬间更换下一页的背景
book.style.backgroundImage = 'url(images/' + (index % 2 + 1) + '.jpg)';
// 让翻页瞬间回去
rightPage.style.transition = '0s';
rightPage.style.transform = 'perspective(800px) rotateY(0deg)';
// 更换翻页纸正面背景
topNode.style.backgroundImage = 'url(images/' + (index % 2 + 1) + '.jpg)';
// 更换翻页纸背面背景
bottomNode.style.backgroundImage = 'url(images/' + ((index + 1) % 2 + 1) + '.jpg)';
// 更换翻页后的纸背景
rightOtherPage.style.backgroundImage = 'url(images/' + ((index + 1) % 2 + 1) + '.jpg)';
flag = false;
}, 500);
};
</script>
</body>
</html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341