Advertisement
rajudhaka

Elementor wave animation Bottom

Jun 2nd, 2021
1,068
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.39 KB | None | 0 0
  1. @-webkit-keyframes move_wave_bottom {
  2.     0% {
  3.         margin-left: -5%;
  4.     }
  5.     50% {
  6.         margin-left: -15%;
  7.     }
  8.     100% {
  9.         margin-left: -5%;
  10.     }
  11. }
  12.  
  13. .new_wave_2 .elementor-shape-bottom {
  14.     -webkit-animation: move_wave_bottom 15s ease infinite;
  15.             animation: move_wave_bottom 10s linear infinite;
  16. }
  17.  
  18. .new_wave_2 .elementor-shape-bottom {
  19.     width: 120%;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement