首页 > 代码库 > css气泡图片上下浮动
css气泡图片上下浮动
1.css样式
<style>
*{padding:0;margin:0;}
.demo{
width:160px;
margin:0px auto;
animation:Updown 1s infinite alternate;
-webkit-animation:Updown 1s alternate infinite;/*infinite无限播放,alternate轮流反向播放*/
}
@keyframes Updown{
from{margin-top:30px;}
to{margin-top:10px;}
}
@-webkit-keyframes Updown{
from{margin-top:30px;}
to{margin-top:10px;}
}
</style>
2.html内容
<body>
<!-- 代码 开始 -->
<div class="demo">
<img src="http://www.mamicode.com/img.png"/>
</div>
<!-- 代码 结束 -->
</body>
css气泡图片上下浮动
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。