........._js翻页效果">
赞
踩
给大家分享一个用原生JS实现的翻书效果图,效果如下:
实现代码如下,欢迎大家复制粘贴。
- <!doctype html>
- <html>
-
- <head>
- <meta charset="utf-8">
- <title>原生JS实现翻书特效</title>
- <style type="text/css">
- * {
- margin: 0;
- padding: 0;
- list-style: none;
- }
-
- #button{
- 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%;
-
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。