共计 1153 个字符,预计需要花费 3 分钟才能阅读完成。
本篇内容主要讲解“css3 怎么实现动画”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让丸趣 TV 小编来带大家学习“css3 怎么实现动画”吧!
具体使用示例:
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}
}
相关属性:
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:设置对象状态为动画结束或开始的状态,结束时状态优先
到此,相信大家对“css3 怎么实现动画”有了更深的了解,不妨来实际操作一番吧!这里是丸趣 TV 网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!