我需要在css中做一个波浪线动画。
我希望它看起来像这样:
我的代码:
<div class="wrapper">
<div class="line"></div>
</div>
.wrapper {
width: 100%;
height: 500px;
background: #fff;
float: left;
position: relative;
}
.line {
width: 100%;
height: 2px;
background: url('http://tiny .pl/gjhxv') left top repeat-x;
position: absolute;
top: 50%;
left: 0;
}
答案 0 :(得分:1)