思路:
一个外层盒子设置背景;一个内层盒子设置宽高背景,并设置animate让盒子移动
demo:
css部分:
@keyframes mymove { from{left:0px;} to{left:70px;} } .father{ background: #748096; border-radius:5px; position: relative; top: 70px; left: -5px; } .moveson { width:20px; height:8px; background:#a0e80c; border-radius: 5px; animation:mymove 2s linear infinite; position:relative; }
html部分:
<div class="father"> <div class="moveson"></div> </ediv>
总结
标签:
css流向性,css动态线条效果
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“纯css实现流向性和动态线条效果的代码”评论...