css3动画的使用图片上下循环跳动
2021-03-04 08:28
标签:center 循环 alt 动画的使用 mat infinite color text inf 图片上下循环跳转 点击跳转 css代码: css3动画的使用图片上下循环跳动 标签:center 循环 alt 动画的使用 mat infinite color text inf 原文地址:https://www.cnblogs.com/my466879168/p/13263577.htmlanimation动画使用
html代码:@keyframes icon{
0%{
opacity: 0.8;
transform: translate(0,0);
}
50%{
opacity: 1;
transform: translate(5px,15px);
}
100%{
opacity: 0.8;
transform: translate(0,0);
}
}
.siteicon{
width: 200px;
height: 200px;
text-align: center;
margin: 200px auto;
animation: icon 3s linear infinite;
}
p{
color: #f9743a;
}
上一篇:网站变成黑白模式