css实现⼀个上下浮动的动画效果css3实现⼀个上下浮动的动画效果(animation)
CSS
@keyframes movepoint{from{top:50px}to{top:16px}}
.shade-button-point {
display: inline-block;
position: absolute;
top: 50px;
left: 30%;
animation: movepoint 2s infinite;
-webkit-animation: movepoint 2s infinite;
css特效文字}
HTML
<div >
<button type="button">点我点我快点我</button>
<img class="shade-button-point" src="img-blog.csdnimg/2022010707303578649.png">
</div>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论