在css中挥舞着一条线

时间:2017-07-25 07:47:55

标签: css css3 animation css-transitions

我需要在css中做一个波浪线动画。

我希望它看起来像这样:

wavy line

我的代码:

<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;
}

https://jsfiddle.net/agxx3ysk/

1 个答案:

答案 0 :(得分:1)

在StackOverflow上检查此答案 Link to the wave

one more link

只需更改fill:nonestroke:red属性即可。你可以进一步玩这个。