概述
本文操作环境:windows10系统、css 3、thinkpad t480电脑。
1、利用transition设置过渡,添加transform设置形状,形成动画效果,如下:
.divadd {
transition: All 0.4s ease-in-out;
-webkit-transition: All 0.4s ease-in-out;
-moz-transition: All 0.4s ease-in-out;
-o-transition: All 0.4s ease-in-out;
transform:rotate(360deg);
-ms-transform:rotate(360deg); /* IE 9 */
-webkit-transform:rotate(360deg); /* Safari and Chrome */
}
登录后复制
不过此种方式比较小众,不易控制。
2、添加animation属性,设置动画效果,如下:
.a1 {
position: absolute;
animation: a1 3s;
opacity: 0
}
@keyframes a1 {
0% {left: 10px;opacity: 0}
30% {left: 60px;background-color: pink;font-size:23px;opacity: 1}
90% {left: 100px;background-color: red;opacity: 1}
100% {left: 10px;opacity: 0}
}
登录后复制
以上百分比后的方括号内可以添加各种属性值,比如transform ratote、left。。。。。。添加left top等定位不要忘记设置position absolute。
(学习视频分享:css视频教程)
所有属性有:
animation-name: myfirst; //动画名称,用于animation引用
animation-duration: 5s; //动画时长,
animation-timing-function: linear;
animation-delay: 2s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-play-state: running;
登录后复制
animation-fill-mode设置动画结束后的状态
none:默认值。不设置对象动画之外的状态,DOM未进行动画前状态
forwards:设置对象状态为动画结束时的状态,100%或to时,当设置animation-direcdtion为reverse时动画结束后显示为keyframes第一帧
backwards:设置对象状态为动画开始时的状态,(测试显示DOM未进行动画前状态)
both:设置对象状态为动画结束或开始的状态,结束时状态优先
相关推荐:CSS教程
以上就是css3中实现动画有哪两种方式的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是长情蓝天为你收集整理的css3中实现动画有哪两种方式的全部内容,希望文章能够帮你解决css3中实现动画有哪两种方式所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复