欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css 动画 animate

程序员文章站 2024-03-25 14:35:04
...

案例 加载中 动画

效果:

css 动画 animate

代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>菜鸟教程(runoob.com)</title> 
<style> 
div
{
	width:10px;
	height:10px;
	float:left;
	background:#D1D1D1;
	border-radius:50px;
	margin-left:10px;
	position:relative;
	animation:mymove 2s infinite;
	/*Safari and Chrome*/
	-webkit-animation:mymove 2s infinite;
}
div:nth-child(2){
	animation-delay:0s;
	-webkit-animation-delay:0s;
}
div:nth-child(3){
	animation-delay:1s;
	-webkit-animation-delay:0.8s;
}
div:nth-child(4){
	animation-delay:2s;
	-webkit-animation-delay:1.4s;
}
	
@keyframes mymove
{
	from {opacity:0.9;}
	to {opacity:0.4;}
}

@-webkit-keyframes mymove /*Safari and Chrome*/
{
	from {opacity:0.9;}
	to {opacity:0.4;}
}
</style>
</head>
<body>
    <p>
        <strong>注意:</strong> 
        animation-delay 属性不兼容Internet Explorer 9 以及更早版本的浏览器
    </p>
    <div class='1'></div>
    <div class='2'></div>
    <div class='3'></div>
</body>
</html>

主要是利用animation-delay 这个方法,延迟动画开始时间。

animation:mymove 2s infinite; 

mymove:is指定动画名称

2s:动画时长

infinite:指定动画运动无数次,也可以设置为数字。