css3 实现动画效果,怎样使他无限循环动下去?

html-css031

css3 实现动画效果,怎样使他无限循环动下去?,第1张

一、实现CSS3无限循环动画代码示例。

代码如下:

CSS:

@-webkit-keyframes gogogo {

0%{

-webkit-transform: rotate(0deg)

border:5px solid red

}

50%{

-webkit-transform: rotate(180deg)

background:black

border:5px solid yellow

}

100%{

-webkit-transform: rotate(360deg)

background:white

border:5px solid red

}

}

.loading{

border:5px solid black

border-radius:40px

width: 28px

height: 188px

-webkit-animation:gogogo 2s infinite linear

margin:100px

}

扩展资料

实现动画无限循环所需要的CSS属性说明:

1、infinite

在animation后面加上infinite就可以无限循环,另外还可以做反向循环使用animation-direction

2、animation-name

规定需要绑定到选择器的 keyframe 名称。

3、animation-duration

规定完成动画所花费的时间,以秒或毫秒计。

4、animation-timing-function

规定动画的速度曲线。

5、animation-delay

规定在动画开始之前的延迟。

6、animation-iteration-count

规定动画应该播放的次数。

7、animation-direction

规定是否应该轮流反向播放动画。

并没有出现你描述的情况,谷歌浏览器下,确实是以顶部中心点为轴心左右摆动。

如果你不是,查看下代码,是否样式出现了覆盖的情况。

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>

  

<title>Document</title>

<style type="text/css">

.rot{-webkit-animation:rot 3s linear}

@-webkit-keyframes rot{

0%,20%,40%,60%,80%,100%{transform-origin:top center}

0%{transform: rotate(0deg)}

20%{transform:rotate(20deg)}

40%{transform:rotate(-15deg)}

60%{transform:rotate(10deg)}

80%{transform:rotate(-5deg)}

100%{transform:rotate(0deg)}

}

  </style>

</head>

<body>

<img src="pcj/aa/img/h_icon.png" class="rot" />

</body>

</html>

1、首先新建一个html空白文档,取名字叫做css3动画,保存一下。

2、然后写html结构,只需要一个div元素即可,class名字叫做img

3、设置其边框为不同的颜色,边框宽度设置成100px。

4、因为是圆环,所以我们用到了css3的圆角效果,设置圆角为50%,也就是border-radius:50%,看一下效果。

5、接下来就是关键的步骤了,也就是添加动画效果。输入以下代码

6、来看一下最后的效果,还是不错的。