animation-direction属性怎么用


本文摘自PHP中文网,作者青灯夜游,侵删。

animation-direction属性是用来定义是否应该轮流反向播放动画的;当动画播放次数超过一次时,我们就可以通过设置animation-direction的值为alternate来实现动画轮流反向播放。

CSS3 animation-direction属性

作用:定义是否应该轮流反向播放动画。

语法:

1

animation-direction: normal|alternate;

normal:默认值。动画应该正常播放。

alternate:动画应该轮流反向播放。

说明: 如果 animation-direction 值是 "alternate",则动画会在奇数次数(1、3、5 等等)正常播放,而在偶数次数(2、4、6 等等)向后播放。

注:如果把动画设置为只播放一次,则该属性没有效果。

CSS3 animation-direction属性的使用示例

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

<!DOCTYPE html>

<html>

<head>

<style>

div

{

width:100px;

height:100px;

background:red;

position:relative;

animation:myfirst 5s infinite;

animation-direction:alternate;

 

/* Safari and Chrome */

-webkit-animation:myfirst 5s infinite;

-webkit-animation-direction:alternate;

}

 

@keyframes myfirst

{

0%   {background:red; left:0px; top:0px;}

25%  {background:yellow; left:200px; top:0px;}

50%  {background:blue; left:200px; top:200px;}

75%  {background:green; left:0px; top:200px;}

100% {background:red; left:0px; top:0px;}

}

 

@-webkit-keyframes myfirst /* Safari and Chrome */

{

0%   {background:red; left:0px; top:0px;}

25%  {background:yellow; left:200px; top:0px;}

50%  {background:blue; left:200px; top:200px;}

75%  {background:green; left:0px; top:200px;}

100% {background:red; left:0px; top:0px;}

}

</style>

</head>

<body>

 

<div></div>

 

</body>

</html>

效果图:

1.gif

以上就是本篇文章的全部内容,希望能对大家的学习有所帮助。更多精彩内容大家可以关注php中文网相关教程栏目!!!

以上就是animation-direction属性怎么用的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

border-image-slice属性怎么用

css3 教程

css中什么是:placeholder-shown?如何工作?有什么用?

punctuation-trim属性怎么用

transition-delay属性怎么用

css3中box-sizing属性的解析(附代码)

通过案例,了解css3创建简单动画的方法

transition-timing-function属性怎么用

css3什么时间推出的

如何解决css3 media不起作用的问题

更多相关阅读请进入《animation-direction属性》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...