CSS3动画功能
2018-06-24 01:31:30来源:未知 阅读 ()
1.transition功能
transition属性的使用方法:transition:property duration timing-function;
其中property表示对哪个属性进行平滑过渡,duration表示多长时间完成属性值的平滑过渡,timing-function表示通过什么方法来进行平滑过渡。
多平滑过渡示例:
1 <!DOCTYPE html> 2 <html lang="zh-CN"> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 5 <meta http-equiv="x-ua-compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> 7 <title>测试</title> 8 </head> 9 <body> 10 <div id="test"></div> 11 <style> 12 #test{ 13 width: 500px; 14 height: 500px; 15 background-color: yellow; 16 /*css动画*/ 17 transform: rotate(0); 18 -webkit-transition: transform 0.5s linear, width 0.5s linear; 19 -moz-transition: transform 0.5s linear, width 0.5s linear; 20 -ms-transition: transform 0.5s linear, width 0.5s linear; 21 -o-transition: transform 0.5s linear, width 0.5s linear; 22 transition: transform 0.5s linear, width 0.5s linear; 23 } 24 #test:hover{ 25 width: 200px; 26 transform: rotate(180deg); 27 } 28 </style> 29 </body> 30 </html>
2.animation功能
使用示例:
1 <!DOCTYPE html> 2 <html lang="zh-CN"> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 5 <meta http-equiv="x-ua-compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> 7 <title>测试</title> 8 </head> 9 <body> 10 <div id="test"></div> 11 <style> 12 /*animation动画*/ 13 @-webkit-keyframes colorChange { 14 0%{ 15 background-color: deepskyblue; 16 } 17 50%{ 18 background-color: red; 19 } 20 100%{ 21 background-color: deepskyblue; 22 } 23 } 24 #test{ 25 width:500px; 26 height: 500px; 27 background-color: deepskyblue; 28 } 29 #test:hover{ 30 animation-name: colorChange; 31 animation-duration: 1s; 32 animation-timing-function: linear; 33 } 34 </style> 35 </body> 36 </html>
实现动画的方法:
方法 | 属性值的变化速度 |
linear | 在动画开始时与结束时以同样的速度进行变化 |
ease-in | 动画开始时速度很慢,然后速度沿曲线值进行加快 |
ease-out | 动画开始时速度很快,然后速度沿曲线值进行放慢 |
ease | 动画开始时速度很慢,然后速度沿曲线值进行加快,然后再沿曲线值进行放慢 |
ease-in-out | 动画开始时速度很慢,然后速度沿曲线值进行加快,然后再沿曲线值进行放慢 |
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:vue属性
- ie8下透明度处理 2020-06-11
- CSS3 2020-06-05
- css:css3(圆角边框、盒子阴影、文字阴影) 2020-06-05
- 关于vue的多页面标签功能,对于嵌套router-view缓存的最终无 2020-06-01
- 6.动画 2020-05-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash