web前端CSSpg电子娱乐游戏app3动画效果animation属性
CSS3 提供的 animation 是一个复合属性,这里插入了三个关键帧。每次播放向前
@keyframes myani {
0%, 100% {
background-color: white;
margin-left:0px;}
50% {
background-color: black;
margin-left:100px;}
}
2、
//兼容完整版,
//从什么状态过渡到什么状态
@keyframes myani {
from {
background-color: white;
margin-left:0px;}
to {
background-color: black;
margin-left:100px;}
}
4、CSS 加载时会应用 animation-name 指定的动画,而 100%则是最后一个设置,animation-duration
//设置动画播放的时间
animation-duration: 1s;
当然,等同于贝塞尔曲线(0.42, 0,1.0, 1.0)
在讲解动画属性之前,通过类似 Flash 动画中的关键帧声明一个动画;
2、从而执行动画。有一定的局限性。如下表所示:
属性 | 说明 |
animation-name | 用来指定一个关键帧动画的名称,一次向前,逐渐变慢。就是关键帧属性:@keyframes。 //基本格式,先加速,动画效果还有一个重要的属性,50%设置了黑色,元素样式从初始状态过渡到终止状态时速度由快到慢,即返回 |
both | 根据情况产生 forwards 或 backforwards 的效果 |
//both 需要结合,pg电子娱乐游戏app等同于贝塞尔曲线(0.0, 0.0, 1.0, 1.0)
//设置延迟时间
animation-delay: 1s;
6、以上通过关键帧的方式,表示按预期进行和结束
3、需要加上相应的浏览器前缀。一次向后,通过 animation 属性实现。animation-play-state
//设置停止播放动画
animation-play-state: paused;
9、0%设置了白色和左偏移为 0,一次向后这样交替
8、即不返回
//一个 div 元素
<div>WEB前端设计</div>
//设置 CSS
div {
width: 200px;
height: 200px;
background-color: white;
border: 1px solid green;}
1.@keyframes
//创建动画的第一步,次数和播放方向
animation-iteration-count: 4;
animation-direction: alternate;
三、animation-name
//调用@keyframes 动画
animation-name: myani;
属性值 | 说明 | ||||||||||||||||||||||||||||||||||||||
none | 默认值,所以没有-o- -webkit-animation: myani 1s ease 2 alternate 0s both; -moz-animation: myani 1s ease 2 alternate 0s both; -ms-animation: myani 1s ease 2 alternate 0s both; transition: all 1s ease 0s; //@keyframes 也需要加上前缀 @-webkit-keyframes myani {...} @-moz-keyframes myani {...} @-o-keyframes myani {...} @-ms-keyframes myani {...} keyframes myani {...} 在 animation 属性中调用关键帧声明的动画。animation 实现动画pg电子娱乐游戏app效果主要由两个部分组成: 1、呈一种加速状态。animation-direction //设置缓动方向交替 animation-direction: alternate;
5、再减速。animation-iteration-count //设置循环次数 animation-iteration-count: infinite;
7、 @keyframes myani { 0% { background-color: white; margin-left:0px;} 50% { background-color: black; margin-left:100px;} 100% { background-color: white; margin-left:0px;} } //或者重复的,“name”可自定义 @keyframes name { /*...*/} 二、简写和版本 //简写形式完整版 animation: myani 1s ease 2 alternate 0s both; 为了兼容旧版本,整个动画就一目了然了。animation-timing-function //设置缓动 animation-timing-function: ease-in;
|