兼容性ie10开始兼容,移动端兼容良好曾几何时,网页上的动画特效基本都是由javascript定时器实现的,现在逐步改为使用css3过度优点:动画更细腻,内存开销小transition属性有4个要素:
transition:width 1s linear 0s;(什么属性要过度、动画时长、变化速度曲线军训心得体会800大学、延迟时间)
<!doctype html><htm孤独的小螃蟹的故事l lang="en"><head> <meta chart="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>动画过渡</title> <style> .box { width: 200px; height: 200px; background-color: black; transition: width 5s linear 0s; } .box:hover { width: 500px; } </style></head><body> <div class="box"> </div></body></html>
就是需要过渡的的加属性值transition,第一个值为变化的属性
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> &l第一次游泳t;meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>动画过渡</title> <style> .box { width: 200px; height: 200px; background-color: black; transition: width 5s linear 0s; } .box:hover { width: 500px; } .box1{ width: 200px; height: 200px; background-color: blue; transition: all 5s linear 0s; } .box1:hover { width: 400px; height: 200px; background-color: greenyellow; border-radius: 50%; 藤县藤州中学 } </style></head><body> <div class="box"></div> <div class="box1"></div></body></html>
transition-timing-function:ea;
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>动画过渡</title> <style> * { margin: 0; padding: 0; } .box1 { border:1px solid black; } .box1 p{ width: 50px; height: 50px; background-color: blue; position: relative; left: 0; margin-bottom: 10px; transition: left 5s linear 0s; } .box1 p:nth-child(2) { transition-timing-function: ea; } .box1 p:nth-child(3) { transition-timing-function: ea-in; } .box1 p:nth-child(4) { transition-timing-function: ea-out; } .box1 p:nth-child(5) { transition-timing-function: ea-in-out; } .box1:hover p { left: 100px; } </style></head><body> <div class="box1"> <p></p> <p></p> <p></p> <p></p> <p></p> </div></body></html>
到此这篇关于css3使用过度动画和缓动效果案例讲解的文章就介绍到这了,更多相关css3使用过度动画和缓动效果内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-03 21:48:35,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/e716f86e67b21b8941cc23602bdd42fc.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:CSS3使用过度动画和缓动效果案例讲解.doc
本文 PDF 下载地址:CSS3使用过度动画和缓动效果案例讲解.pdf
留言与评论(共有 0 条评论) |