Background image parallax effect on moble finally enabled?

Hallo,

In my website I use a couple of images that have an parallax effect, on desktop version only, in mobile this is not enabled in the past, to save phone resources… I was wondering if now in 2019 this was finally enabled. That’s my questions, thanks a lot to anyone reading thins.

Website:

www.010mac.nl

Hi There,

The parallax functionality is still disabled on mobiles for performance reasons.

You need custom code to make it work on the mobile device. You may try adding the following CSS to your Theme Options -> CSS area.

@media (max-width:979px){
     .x-section.bg-image.parallax, .x-section.bg-pattern.parallax {
         background-attachment: fixed !important;
         background-position: center center !important;
     }
}

We aren’t sure if the code will work 100%, but you can try it. For specific issues, read the following (https://stackoverflow.com/questions/23236158/how-to-replicate-background-attachment-fixed-on-ios)

Thanks for understanding!

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