@keyframes

I try to add these effect but not work on builder preview. I need to move left right background image. Thanks

https://codepen.io/appxonet/pen/PomZOpP

Hi Gianluca,

Thank you for writing in, first set the background type to Background Image since the code on codepen specially says background-position

Then update your CSS selector to $el .x-bg-layer-lower-image to target that lower layer background-image.

e.g.

$el .x-bg-layer-lower-image {
  background-repeat: repeat-x;
  animation: animate 5s linear infinite alternate;
}

Hope it helps,
Cheers!

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.