纯css3写的仿真图书翻页效果
对css3研究越深入,越觉得惊艳。css3说不上是万能的,但是它能实现的效果也超出了我的想象。它的高效率和动画效果的流畅性很多情况下能替代js的作用。个人习惯css3能实现的效果就不会用js,虽然在国内貌似没有css3的用武之地,这一点完成不能阻挡我对css3的热情。博主是一个地道的开源支持者,在学习css3的过程中写的一些demo会贴出来跟大家分享,都是一些想法最简单的实现,当然会有很多问题,希望大家指正,一起学习,一起进步。
下面贴一个纯css3实现的仿真图书翻页效果,只是一个很粗糙的雏形,后续会慢慢完善。欢迎大家提供宝贵的意见。
效果图
老规矩先上demo跟下载地址
下面是源码:
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>css3-book</title>
<style> footer {
font:14px/1.3 'Microsoft YaHei';
margin-top:150px;
color: #000;
font-size: 15px;
line-height: 1.6;
padding: 60px 20px 0;
text-align: center;
display: block;
}
footer a{
color:#000;
text-decoration:none;
}
footer a:hover{
text-decoration:underline;
}
@keyframes book
{
0% {transform: rotate(0deg);left:0px;}
25% {transform: rotate(20deg);left:0px;}
50% {transform: rotate(0deg);left:500px;}
55% {transform: rotate(0deg);left:500px;}
70% {transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {transform: rotate(-360deg);left:0px;}
} @-webkit-keyframes book
{
0% {-webkit-transform: rotate(0deg);left:0px;}
25% {-webkit-transform: rotate(20deg);left:0px;}
50% {-webkit-transform: rotate(0deg);left:500px;}
55% {-webkit-transform: rotate(0deg);left:500px;}
70% {-webkit-transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {-webkit-transform: rotate(-360deg);left:0px;} } @-moz-keyframes book
{
0% {-moz-transform: rotate(0deg);left:0px;}
25% {-moz-transform: rotate(20deg);left:0px;}
50% {-moz-transform: rotate(0deg);left:500px;}
55% {-moz-transform: rotate(0deg);left:500px;}
70% {-moz-transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {-moz-transform: rotate(-360deg);left:0px;}
} @-o-keyframes book
{
0% {transform: rotate(0deg);left:0px;}
25% {transform: rotate(20deg);left:0px;}
50% {transform: rotate(0deg);left:500px;}
55% {transform: rotate(0deg);left:500px;}
70% {transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {transform: rotate(-360deg);left:0px;}
}
.container{
position:relative;
height:155px;
width:236px;
margin:40px auto;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style:preserve-3d;
}
.page2{ width:236px;
height:155px;
overflow:hidden;
-webkit-animation:page 5s ease 1s infinite alternate;
-moz-animation:page 5s ease 1s infinite alternate;
-o-animation:page 5s ease 1s infinite alternate;
animation:page 5s ease 1s infinite alternate;
}
#page1
{
position:absolute;
left:0px;
width:236px;
height:155px;
overflow:hidden;
}
#page2
{
position:absolute;
left:236px;
width:0px;
height:155px;
overflow:hidden;
-webkit-animation:page2 2s ease 1s infinite alternate;
-moz-animation:page2 2s ease 1s infinite alternate;
-o-animation:page2 2s ease 1s infinite alternate;
animation:page2 2s ease 1s infinite alternate;
}
#page3
{
position:absolute;
left:236px;
width:0px;
height:155px;
overflow:hidden;
-webkit-animation:page3 2s ease 1s infinite alternate;
-moz-animation:page3 2s ease 1s infinite alternate;
-o-animation:page3 2s ease 1s infinite alternate;
animation:page3 2s ease 1s infinite alternate;
}
#page3 img{
margin-left:-128px;
-webkit-animation:pagei3 2s ease 1s infinite alternate;
-moz-animation:pagei3 2s ease 1s infinite alternate;
-o-animation:pagei3 2s ease 1s infinite alternate;
animation:pagei3 2s ease 1s infinite alternate;
}
@-webkit-keyframes page2
{
from {width: 0px;left:236px}
to {width: 128px;left:0px}
}
@-moz-keyframes page2
{
from {width: 0px;left:236px}
to {width: 128px;left:0px}
}
@-o-keyframes page2
{
from {width: 0px;left:236px}
to {width: 128px;left:0px}
}
@keyframes page2
{
from {width: 0px;left:236px}
to {width: 128px;left:0px}
}
@-webkit-keyframes page3
{
from {width: 0px;left:236px}
to {width: 128px;left:128px}
}
@-moz-keyframes page3
{
from {width: 0px;left:236px}
to {width: 128px;left:128px}
}
@-o-keyframes page3
{
from {width: 0px;left:236px}
to {width: 128px;left:128px}
}
@keyframes page3
{
from {width: 0px;left:236px}
to {width: 128px;left:128px}
}
@-webkit-keyframes pagei3
{
from {margin-left:-236px}
to {margin-left:-128px}
}
@-moz-keyframes pagei3
{
from {margin-left:-236px}
to {margin-left:-128px}
}
@-o-keyframes pagei3
{
from {margin-left:-236px}
to {margin-left:-128px}
}
@keyframes pagei3
{
from {margin-left:-236px}
to {margin-left:-128px}
}
</style>
</head>
<body>
<div class="container">
<div class="page" id="page1">
<img src="1.jpg"/>
</div>
<div class="page" id="page2">
<img src="2.jpg"/>
</div>
<div class="page" id="page3">
<img src="2.jpg"/>
</div>
</div>
<footer>Tutorial by <a href="http://bloglaotou.duapp.com" target="_blank">sanyecao</a> ©2013 </footer>
</body>
</html>
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>css3-book</title>
<style> footer {
font:14px/1.3 'Microsoft YaHei';
margin-top:150px;
color: #000;
font-size: 15px;
line-height: 1.6;
padding: 60px 20px 0;
text-align: center;
display: block;
}
footer a{
color:#000;
text-decoration:none;
}
footer a:hover{
text-decoration:underline;
}
@keyframes book
{
0% {transform: rotate(0deg);left:0px;}
25% {transform: rotate(20deg);left:0px;}
50% {transform: rotate(0deg);left:500px;}
55% {transform: rotate(0deg);left:500px;}
70% {transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {transform: rotate(-360deg);left:0px;}
} @-webkit-keyframes book
{
0% {-webkit-transform: rotate(0deg);left:0px;}
25% {-webkit-transform: rotate(20deg);left:0px;}
50% {-webkit-transform: rotate(0deg);left:500px;}
55% {-webkit-transform: rotate(0deg);left:500px;}
70% {-webkit-transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {-webkit-transform: rotate(-360deg);left:0px;} } @-moz-keyframes book
{
0% {-moz-transform: rotate(0deg);left:0px;}
25% {-moz-transform: rotate(20deg);left:0px;}
50% {-moz-transform: rotate(0deg);left:500px;}
55% {-moz-transform: rotate(0deg);left:500px;}
70% {-moz-transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {-moz-transform: rotate(-360deg);left:0px;}
} @-o-keyframes book
{
0% {transform: rotate(0deg);left:0px;}
25% {transform: rotate(20deg);left:0px;}
50% {transform: rotate(0deg);left:500px;}
55% {transform: rotate(0deg);left:500px;}
70% {transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {transform: rotate(-360deg);left:0px;}
}
.container{
position:relative;
height:155px;
width:236px;
margin:40px auto;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style:preserve-3d;
}
.page2{ width:236px;
height:155px;
overflow:hidden;
-webkit-animation:page 5s ease 1s infinite alternate;
-moz-animation:page 5s ease 1s infinite alternate;
-o-animation:page 5s ease 1s infinite alternate;
animation:page 5s ease 1s infinite alternate;
}
#page1
{
position:absolute;
left:0px;
width:236px;
height:155px;
overflow:hidden;
}
#page2
{
position:absolute;
left:236px;
width:0px;
height:155px;
overflow:hidden;
-webkit-animation:page2 2s ease 1s infinite alternate;
-moz-animation:page2 2s ease 1s infinite alternate;
-o-animation:page2 2s ease 1s infinite alternate;
animation:page2 2s ease 1s infinite alternate;
}
#page3
{
position:absolute;
left:236px;
width:0px;
height:155px;
overflow:hidden;
-webkit-animation:page3 2s ease 1s infinite alternate;
-moz-animation:page3 2s ease 1s infinite alternate;
-o-animation:page3 2s ease 1s infinite alternate;
animation:page3 2s ease 1s infinite alternate;
}
#page3 img{
margin-left:-128px;
-webkit-animation:pagei3 2s ease 1s infinite alternate;
-moz-animation:pagei3 2s ease 1s infinite alternate;
-o-animation:pagei3 2s ease 1s infinite alternate;
animation:pagei3 2s ease 1s infinite alternate;
}
@-webkit-keyframes page2
{
from {width: 0px;left:236px}
to {width: 128px;left:0px}
}
@-moz-keyframes page2
{
from {width: 0px;left:236px}
to {width: 128px;left:0px}
}
@-o-keyframes page2
{
from {width: 0px;left:236px}
to {width: 128px;left:0px}
}
@keyframes page2
{
from {width: 0px;left:236px}
to {width: 128px;left:0px}
}
@-webkit-keyframes page3
{
from {width: 0px;left:236px}
to {width: 128px;left:128px}
}
@-moz-keyframes page3
{
from {width: 0px;left:236px}
to {width: 128px;left:128px}
}
@-o-keyframes page3
{
from {width: 0px;left:236px}
to {width: 128px;left:128px}
}
@keyframes page3
{
from {width: 0px;left:236px}
to {width: 128px;left:128px}
}
@-webkit-keyframes pagei3
{
from {margin-left:-236px}
to {margin-left:-128px}
}
@-moz-keyframes pagei3
{
from {margin-left:-236px}
to {margin-left:-128px}
}
@-o-keyframes pagei3
{
from {margin-left:-236px}
to {margin-left:-128px}
}
@keyframes pagei3
{
from {margin-left:-236px}
to {margin-left:-128px}
}
</style>
</head>
<body>
<div class="container">
<div class="page" id="page1">
<img src="1.jpg"/>
</div>
<div class="page" id="page2">
<img src="2.jpg"/>
</div>
<div class="page" id="page3">
<img src="2.jpg"/>
</div>
</div>
<footer>Tutorial by <a href="http://bloglaotou.duapp.com" target="_blank">sanyecao</a> ©2013 </footer>
</body>
</html>
纯css3写的仿真图书翻页效果的更多相关文章
- turn.js 图书翻页效果
今天用turn.js 做图书的翻页效果遇到问题: 图片路径总是出错 调了一天,总算调出来了 我用的thinkphp,其他的不知道是不是一样 三 个地方要改动: 1.后台查出地址 注意的地方:1.地址要 ...
- 纯CSS3写的10个不同的酷炫图片遮罩层效果【转】
这个是纯CSS3实现的的10个不同的酷炫图片遮罩层效果,可以欣赏一下 在线预览 下载地址 实例代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ...
- 纯CSS3写的10个不同的酷炫图片遮罩层效果
这个是纯CSS3实现的的10个不同的酷炫图片遮罩层效果,可以欣赏一下 在线预览 下载地址 实例代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1 ...
- 一些纯css3写的公司logo
随着对css3了解得越深入,越来越发现了css3的强大.css3不但能完成一些基本的特效如圆角阴影等,还能借助动画技术实现一些复杂的动画,能替代很多以前js才能完成的工作,css3的作用还不止于此 ...
- OC纯代码全手工打造ScroolView实现翻页
OC纯代码全手工打造ScroolView实现翻页 1. 概述 分为三部分: 上部标题ScrollView 下部内容ScrollView 上部当前页 标示线 2. 效果 上下两部分都随着手势的滑动一块滑 ...
- css3 利用perspective实现翻页效果和正方体 以及翻转效果
要点: 1 实现3D效果就需要使用perspective属性 1 页面旋转使用css3的rorate 2 使用backface-visibility 实现正面元素翻转之后背面不可见,显示出反面的元素 ...
- turn.js中文API 写一个翻页效果的参数详细解释
$('.flipbook').turn({ width: 922, height: 600, elevation: 50, gradients: true, a ...
- CSS3-----图片翻页效果的展示
在开发一个网站的过程中各种翻页效果数不胜数,在这里我将介绍一下简单的一种方法就是使用css3的旋转即可实现这种常见的效果: 显示效果如下: 首先是页面的布局,不用那么复杂; a标签的href属性,一般 ...
- webapp应用--模拟电子书翻页效果
前言: 现在移动互联网发展火热,手机上网的用户越来越多,甚至大有超过pc访问的趋势.所以,用web程序做出仿原生效果的移动应用,也变得越来越流行了.这种程序也就是我们常说的单页应用程序,它也有一个英文 ...
随机推荐
- [设计模式] 20 状态模式 State Pattern
在GOF的<设计模式:可复用面向对象软件的基础>一书中对状态模式是这样说的:允许一个对象在其内部状态改变时改变它的行为.对象看起来似乎修改了它的类.状态模式的重点在于状态转换,很多时候,对 ...
- PHP防止SQL注入与几种正则表达式讲解
注入漏洞代码和分析 代码如下: <?php function customerror($errno, $errstr, $errfile, $errline) { echo <b& ...
- 层次数据结构字符串处理,split函数使用
String str1 = "11@22#33,44,55,#bb#cc,dd,ee,#@DDD@TTT#999,#@"; String[] CX = str1.split(&qu ...
- SQL中的事物【转】
来源于:http://www.cnblogs.com/zhuifengnianshao/archive/2010/11/24/1886939.html 事务(Transaction)是并发控制的单位, ...
- 架构探险——从零开始写Java Web框架》第二章照作
沉下来慢慢看实现了. 越来越觉得可以和DJANGO作对比. package org.smart4j.chapter2.model; /** * Created by sahara on 2016/3/ ...
- linux网站推荐
推荐几个Liux中文学些网站. http://www.chinaunix.net/http://linux.cn/http://www.linuxidc.com/
- 360抢票 网站维护中 && 你的登录被踢了!
本来在超市犹豫到底该买哪种暖手袋,犹豫了差不多半个多小时,还没决定好,一看时间还有8分钟到10点,遂狂奔回寝室抢票. 结果,360抢票被12306秒了—— 猜测原因是12306的验证码改了(变成动态的 ...
- Android学习及开发随记1:Android Studio安装配置
1.本系列仅为个人使用,概不负责.随着时间推移,部分内容可能因为软件更新而出现不能对应的情况. 本文的配置情况,仅针对Android Studio v1.1.0 windows版本 全新安装. Goo ...
- linux上tomcat安装
转载:http://my.oschina.net/zmf/blog/309484 tomcat安装 下载后解压:tar -zxvf apache-tomcat-7.0.28 移动到/usr/local ...
- SQLite操作(C# )
C#连接SQLite的...方法 http://www.cnblogs.com/virusswb/archive/2010/09/17/SQLite1.html 1 SQLite简介 SQLite,是 ...