<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
#img1{
border-radius: 100%;
width: 200px;
height: 200px;
}
#img1:hover{
animation: myimg 5s linear infinite ;
}
@keyframes myimg {
from{transform: rotate(0deg); }
/*from to指定范围*/
to{transform: rotate(360deg);}
}
.div1,.div2{
width: 100px;
height: 100px;
background-color: cornsilk;
margin: 100px;
}
@keyframes myname {
25%{width: 150px;height: 150px;}
50%{width: 200px;height: 200px;}
75%{width: 250px;height: 250px;}
100%{width: 400px;height: 400px;}
}
@keyframes myname2 {
from{width: 100px;height: 100px;}
to{width: 500px;height: 600px;background-color: blueviolet}
}
.div1:hover{
animation: myname 2s;
}
.div2:hover{
animation: myname2 2s;
/*使用指定的动画,持续时间*/
}
</style>
</head>
<body>
<div class="div1">
</div>
<div class="div2">
</div>
<img src="res/p_w_picpaths/yuner.png" id="img1">
animation: myimg 3s linear infinite ;infinite可以一直保持旋转
</body>
</html>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。