creating a both side radio wave animation

后端 未结 2 1552
醉酒成梦
醉酒成梦 2021-01-27 17:04

I want a Radar wave animation like this:

With a lot of effort using my poor knowledge of Svgs I added the left side of the desired wave and it works fine. but I n

2条回答
  •  情书的邮戳
    2021-01-27 17:15

    Using

    transform: rotate(180deg);
    

    On a wrapping div will reflect the animation, so you can use it on the right side.

    Example:

    ...(etc)

    With the following added to the stylesheet:

    .reflect {
         transform: rotate(180deg);
    }
    

提交回复
热议问题