css3动画效果小结(推荐)


Posted in HTML / CSS onJuly 25, 2016

css3的动画功能有以下三种:

1、transition(过度属性)
2、animation(动画属性)
3、transform(2D/3D转换属性)

下面逐一进行介绍我的理解:

1、transition:<过渡属性名称> <过渡时间> <过渡模式>

如-webkit-transition:color 1s;

等同于:

-webkit-transition-property:color;

-webkit-transition-duration:1s;

多个属性的过渡效果可以这样写:

方法1:-webkit-transition:<属性1> <时间1> ,<属性2> <时间2> ,。。。

方法2:

-webkit-transition:<属性1> <时间1>;

-webkit-transition:<属性2> <时间2>;

 

transition-timing-function属性值有5个:

ease:缓慢开始,缓慢结束

liner:匀速

ease-in:缓慢开始

ease-out:缓慢结束

ease-in-out:缓慢开始,缓慢结束(和ease稍有区别)

实例:
transition过渡效果

XML/HTML Code复制内容到剪贴板
  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3. <head>  
  4.     <meta charset="UTF-8">  
  5.     <title>transition过渡效果</title>  
  6.     <style>  
  7.         *{   
  8.             margin: 0px;   
  9.             padding: 0px;   
  10.         }   
  11.         #box{   
  12.             width: 200px;   
  13.             height: 200px;   
  14.             background-color: chocolate;   
  15.             position: relative;   
  16.             left: 0px;   
  17.             top: 0px;   
  18.             transition: top 5s ease,left 5s ease ;   
  19.             -moz-transition: top 5s ease,left 5s ease ; /* Firefox 4 */   
  20.             -webkit-transition: top 5s ease,left 5s ease ; /* Safari and Chrome */   
  21.             -o-transition: top 5s ease,left 5s ease ; /* Opera */   
  22.         }   
  23.         .btn{   
  24.             width: 512px;   
  25.             margin: 0 auto;   
  26.             border: 2px solid #e3e3e3;   
  27.             border-radius: 5px;   
  28.             padding: 10px;   
  29.   
  30.         }   
  31.         .btn button{   
  32.             width: 80px;   
  33.             height: 40px;   
  34.             text-align: center;   
  35.             line-height: 40px;   
  36.             margin-right: 20px;   
  37.         }   
  38.         button:last-child{   
  39.             margin-right: 0px;   
  40.         }   
  41.     </style>  
  42.     <script>  
  43.         window.onload=function(){   
  44.             var e1 = document.getElementById("e1");   
  45.             var e2 = document.getElementById("e2");   
  46.             var e3 = document.getElementById("e3");   
  47.             var e4 = document.getElementById("e4");   
  48.             var e5 = document.getElementById("e5");   
  49.             var box = document.getElementById("box");   
  50.             e1.onclick=function(){   
  51.                 box.style.left = 1000+"px";   
  52.                 box.style.top = 100+"px";   
  53.                 box.style.transitionTimingFunction="ease";   
  54.             };   
  55.             e2.onclick=function(){   
  56.                 box.style.right = 0+"px";   
  57.                 box.style.top = 0+"px";   
  58.                 box.style.transitionTimingFunction="liner";   
  59.             };   
  60.             e3.onclick=function(){   
  61.                 box.style.right = 1000+"px";   
  62.                 box.style.top = 100+"px";   
  63.                 box.style.transitionTimingFunction="ease-in";   
  64.             };   
  65.             e4.onclick=function(){   
  66.                 box.style.left = 0+"px";   
  67.                 box.style.top = 0+"px";   
  68.                 box.style.transitionTimingFunction="ease-out";   
  69.             };   
  70.             e5.onclick=function(){   
  71.                 box.style.left = 1000+"px";   
  72.                 box.style.top = 100+"px";   
  73.                 box.style.transitionTimingFunction="ease-in-out";   
  74.             };   
  75.   
  76.         }   
  77.     </script>  
  78. </head>  
  79. <body>  
  80.     <div id="box"></div>  
  81.     <br>  
  82.     <br>  
  83.     <br>  
  84.     <br>  
  85.     <br>  
  86.     <br>  
  87.     <hr>  
  88.     <br>  
  89.     <br>  
  90.     <br>  
  91.     <div class="btn">  
  92.         <button id="e1">ease</button>  
  93.         <button id="e2">liner</button>  
  94.         <button id="e3">ease-in</button>  
  95.         <button id="e4">ease-out</button>  
  96.         <button id="e5">ease-in-out</button>  
  97.     </div>  
  98. </body>  
  99. </html>  

2、动画属性animation

animation: name duration timing-function delay iteration-count direction;

描述
animation-name 规定需要绑定到选择器的 keyframe 名称。。
animation-duration 规定完成动画所花费的时间,以秒或毫秒计。
animation-timing-function 规定动画的速度曲线。
animation-delay 规定在动画开始之前的延迟。
animation-iteration-count 规定动画应该播放的次数。
animation-direction 规定是否应该轮流反向播放动画。

注释:Internet Explorer 9 以及更早的版本不支持 animation 属性。

@keyframes animationname {keyframes-selector {css-styles;}}

描述
animationname 必需。定义动画的名称。
keyframes-selector 必需。动画时长的百分比。 合法的值: 0-100% from(与 0% 相同) to(与 100% 相同)
css-styles 必需。一个或多个合法的 CSS 样式属性。

以百分比来规定改变发生的时间,或者通过关键词 "from" 和 "to",等价于 0% 和 100%。

0% 是动画的开始时间,100% 动画的结束时间。

例如:

CSS Code复制内容到剪贴板
  1. animation:mymove 5s infinite;   

  2.   
  3. @keyframes mymove{   

  4.   
  5. from{ 

    top:0px; }   
  6.   
  7. to{ 

    top:200px; }   
  8.   
  9. }  

还可以这么写:

CSS Code复制内容到剪贴板
  1. @keyframes mymove{   

  2.   
  3. 0%{ 

    top:0px; }   
  4.   
  5. 25%{ 

    top:200px; }   
  6.   
  7. 50%{ 

    top:100px; }   
  8.   
  9. 75%{ 

    top:200px; }   
  10.   
  11. 100%{ 

    top:0px; }   
  12.   
  13. }   

 案例:
css3的animation效果

XML/HTML Code复制内容到剪贴板
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head>  
  4. <style>    
  5. div   
  6. {   
  7. width:100px;   
  8. height:100px;   
  9. background:red;   
  10. position:relative;   
  11. animation:mymove 5s infinite;   
  12. -moz-animation:mymove 5s infinite; /* Firefox */   
  13. -webkit-animation:mymove 5s infinite; /* Safari and Chrome */   
  14. -o-animation:mymove 5s infinite; /* Opera */   
  15. }   
  16.   
  17. @keyframes mymove   
  18. {   
  19. from {top:0px;}   
  20. to {top:200px;}   
  21. }   
  22.   
  23. @-moz-keyframes mymove /* Firefox */   
  24. {   
  25. from {top:0px;}   
  26. to {top:200px;}   
  27. }   
  28.   
  29. @-webkit-keyframes mymove /* Safari and Chrome */   
  30. {   
  31. from {top:0px;}   
  32. to {top:200px;}   
  33. }   
  34.   
  35. @-o-keyframes mymove /* Opera */   
  36. {   
  37. from {top:0px;}   
  38. to {top:200px;}   
  39. }   
  40. </style>  
  41. </head>  
  42. <body>  
  43.   
  44. <p><b>注释:</b>本例在 Internet Explorer 中无效。</p>  
  45.   
  46. <div></div>  
  47.   
  48. </body>  
  49. </html>  

3、设置3D场景(即transform)

-webkit-perspective:800;(单位为像素)--即三维物体距离屏幕的距离。

-webkit-perspective-origin:50% 50%;(这个属性代表了人眼观察的视野。50% 50%为X轴、Y轴相应的位置,即屏幕的正中央。)

 

css3动画效果小结(推荐)

使用transform属性调整元素:-webkit-transform-style:-webkit-perserve-3d;(这个属性是告诉浏览器我们是在一个三维空间中对元素进行操作)

(1)、translate(移动距离)

translateX(x px)

translateY(y px)

translateZ(z px)

(2)、rotate(旋转角度)

rotateX(x deg)

rotateY(y deg)

rotateZ(z deg)

 

css3动画效果小结(推荐)

transform:rotate(45deg)

rotateX:向屏幕上边沿向内旋转为正方向。

rotateY:向屏幕竖直向下为正方向。

rotateZ:向屏幕外为正方向。

一个div块,右边沿向屏幕内旋转45deg,即应设置为:Transform:rotateY(45deg)。

实例:

transform3D转换效果

XML/HTML Code复制内容到剪贴板
  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3. <head>  
  4.     <meta charset="UTF-8">  
  5.     <title>transform3D转换效果</title>  
  6.     <style>  
  7.         *{   
  8.             margin: 0px;   
  9.             padding: 0px;   
  10.         }   
  11.         #box{   
  12.             width: 200px;   
  13.             height: 200px;   
  14.             background-color: chocolate;   
  15.             position: relative;   
  16.             left: 0px;   
  17.             top: 0px;   
  18.             perspective:800px;   
  19.             perspective-origin:50% 50%;   
  20.             transform-style: preserve-3d;   
  21.             transform-origin:0% 100%;//以Y轴为旋转中心   
  22.         }   
  23.         p{   
  24.             margin:20px 520px;   
  25.         }   
  26.         .btn{   
  27.             width: 300px;   
  28.             margin: 0 auto;   
  29.             border: 2px solid #e3e3e3;   
  30.             border-radius: 5px;   
  31.             padding: 10px;   
  32.   
  33.         }   
  34.         .btn button{   
  35.             width: 80px;   
  36.             height: 40px;   
  37.             text-align: center;   
  38.             line-height: 40px;   
  39.             margin-right: 20px;   
  40.         }   
  41.         button:last-child{   
  42.             margin-right: 0px;   
  43.         }   
  44.     </style>  
  45.     <script>  
  46.         window.onload=function(){   
  47.             var tx = document.getElementById("tx");   
  48.             var ty = document.getElementById("ty");   
  49.             var tz = document.getElementById("tz");   
  50.             var rx = document.getElementById("rx");   
  51.             var ry = document.getElementById("ry");   
  52.             var rz = document.getElementById("rz");   
  53.             var box = document.getElementById("box");   
  54.             tx.onclick=function(){   
  55.                 box.style.transform = "translateX(500px)";   
  56.             };   
  57.             ty.onclick=function(){   
  58.                 box.style.transform = "translateY(400px)"  
  59.             };   
  60.             rx.onclick=function(){   
  61.                 box.style.transform = "rotateX(30deg)"  
  62.             };   
  63.             ry.onclick=function(){   
  64.                 box.style.transform = "rotateY(30deg)"  
  65.             };   
  66.             rz.onclick=function(){   
  67.                 box.style.transform = "rotateZ(30deg)"  
  68.             };   
  69.         }   
  70.     </script>  
  71. </head>  
  72. <body>  
  73.     <div id="box"></div>  
  74.     <br>  
  75.     <br>  
  76.     <br>  
  77.     <br>  
  78.     <br>  
  79.     <br>  
  80.     <hr>  
  81.     <br>  
  82.     <br>  
  83.     <br>  
  84.     <p>translate(移动距离)</p>  
  85.     <div class="btn">  
  86.         <button id="tx">translateX</button>  
  87.         <button id="ty">translateY</button>  
  88.     </div>  
  89.     <p>rotate(旋转角度)</p>  
  90.     <div class="btn">  
  91.         <button id="rx">rotateX</button>  
  92.         <button id="ry">rotateY</button>  
  93.         <button id="rz">rotateZ</button>  
  94.     </div>  
  95. </body>  
  96. </html>  

使用transform-origin属性调整旋转中心。默认旋转中心点为div盒子的正中心。

这个旋转中心是可以改变的:

X轴:left、center、right.

Y轴:top、center、bottom.

Z轴:length px(一个长度值)。

以上这篇css3动画效果小结(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

原文地址:http://www.cnblogs.com/gaotenglong/archive/2016/07/24/5700997.html

HTML / CSS 相关文章推荐
利用纯CSS3实现文字向右循环闪过效果实例(可用于移动端)
Jun 15 HTML / CSS
CSS3 please 跨浏览器的CSS3产生器
Mar 14 HTML / CSS
css3中新增的样式使用示例附效果图
Aug 19 HTML / CSS
HTML5+CSS3网页加载进度条的实现,下载进度条的代码实例
Dec 30 HTML / CSS
css3类选择器之结合元素选择器和多类选择器用法
Mar 09 HTML / CSS
分享一个H5原生form表单的checkbox特效代码
Feb 26 HTML / CSS
HTML5之tabindex属性全面解析
Jul 07 HTML / CSS
Canvas 像素处理之改变透明度的实现代码
Jan 08 HTML / CSS
HTML5 Canvas 实现K线图的示例代码
Dec 23 HTML / CSS
boostrap modal 闪现问题的解决方法
Sep 01 HTML / CSS
HTML5 语义化标签(移动端必备)
Aug 23 HTML / CSS
CSS三大特性继承性、层叠性和优先级详解
Jan 18 HTML / CSS
浅谈CSS3动画的回调处理
Jul 21 #HTML / CSS
浅谈css3中的前缀
Jul 20 #HTML / CSS
纯CSS3绘制打火机动画火焰效果
Jul 18 #HTML / CSS
CSS3绘制有活力的链接下划线
Jul 14 #HTML / CSS
CSS3实现时间轴效果
Jul 11 #HTML / CSS
CSS3实现10种Loading效果
Jul 11 #HTML / CSS
CSS3实现可爱的小黄人动画
Jul 11 #HTML / CSS
You might like
使用Limit参数优化MySQL查询的方法
2008/11/12 PHP
ThinkPHP自动填充实现无限级分类的方法
2014/08/22 PHP
教你php如何实现验证码
2016/01/20 PHP
PHP中include/require/include_once/require_once使用心得
2016/08/28 PHP
yii2使用gridView实现下拉列表筛选数据
2017/04/10 PHP
解决Laravel 使用insert插入数据,字段created_at为0000的问题
2019/10/11 PHP
复制小说文本时出现的随机乱码的去除方法
2010/09/07 Javascript
JavaScript 放大镜 放大倍率和视窗尺寸
2011/05/09 Javascript
JQuery中根据属性或属性值获得元素(6种情况获取方法)
2013/01/17 Javascript
javascript中eval函数用法分析
2015/04/25 Javascript
原生JS实现仿淘宝网左侧商品分类菜单效果代码
2015/09/10 Javascript
关于JS中二维数组的声明方法
2016/09/24 Javascript
Angular实现响应式表单
2017/08/04 Javascript
Vue 中的compile操作方法
2018/02/26 Javascript
AjaxUpLoad.js实现文件上传
2018/03/05 Javascript
vue实现自定义日期组件功能的实例代码
2018/11/06 Javascript
javascript中如何判断类型汇总
2019/05/14 Javascript
js cavans实现静态滚动弹幕
2020/05/21 Javascript
nodeJS与MySQL实现分页数据以及倒序数据
2020/06/05 NodeJs
python学习 流程控制语句详解
2016/06/01 Python
使用Python实现博客上进行自动翻页
2017/08/23 Python
python 产生token及token验证的方法
2018/12/26 Python
python字典setdefault方法和get方法使用实例
2019/12/25 Python
浅谈numpy中函数resize与reshape,ravel与flatten的区别
2020/06/18 Python
Vans荷兰官方网站:美国南加州的原创极限运动潮牌
2018/01/23 全球购物
买卖正宗运动鞋:GOAT
2019/12/06 全球购物
介绍一下except的用法和作用
2015/01/22 面试题
岗位竞聘演讲稿
2014/01/10 职场文书
春节晚会主持词
2014/03/24 职场文书
小学生环保演讲稿
2014/04/25 职场文书
小班下学期评语
2014/05/04 职场文书
大学毕业生求职自荐书
2014/06/05 职场文书
优秀大学生自荐信
2014/06/09 职场文书
2014普法依法治理工作总结
2014/12/18 职场文书
幼儿教师年度个人总结
2015/02/05 职场文书
MySQL安装后默认自带数据库的作用详解
2021/04/27 MySQL