当前位置 : 主页 > 网页制作 > css >

纯css实现流向性和动态线条效果的代码

来源:互联网 收集:自由互联 发布时间:2023-01-31
思路: 一个外层盒子设置背景;一个内层盒子设置宽高背景,并设置animate让盒子移动 demo: css部分: @keyframes mymove { from{left:0px;} to{left:70px;}}.father{background: #748096;border-radius:5px;position:

思路:
一个外层盒子设置背景;一个内层盒子设置宽高背景,并设置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实现流向性动态线条效果内容请搜索自由互联以前的文章或继续浏览下面的相关文章,希望大家以后多多支持自由互联!

上一篇:css下div下同行多元素右对齐
下一篇:没有了
网友评论