css如何实现流向性和动态线条效果?本篇文章小编给大家分享一下css实现流向性和动态线条效果代码,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
思路:
一个外层盒子设置背景;一个内层盒子设置宽高背景,并设置animate让盒子移动
demo:
css部分:
@keyframes mymove {
from{left:0px;}
to{left:70px;}
}
.father{
background: #748096;
border-radius:5px;
position: relative;
top: 70px;
left: -5px;
}
.moveson {
background:#a0e80c;
border-radius: 5px;
animation:mymove 2s linear infinite;
position:relative;
}
html部分: