Parallax.js does not work on Chrome for Mobile

0

The effect parallax.js ( link ) only works for desktop browsers.

Can something be done to make the effect visible on mobile devices?

I'm using the default classes and attributes:

<html>
<head>
  <script src="js/jquery.js"></script>
  <script src="js/parallax.js"></script>
</head>
<body>

  <section id="home" class="parallax-window"  data-parallax="scroll" data-image-src="img/bg/home-1280.jpg">  
  </section>
</body>
</html>
    
asked by anonymous 15.05.2017 / 20:32

1 answer

0

I think it might be related to the option "androidFix", which by default comes as true and leaves the static image in mobile.

take a look at the last option link

Changing, it would look something like this:

<section id="home" class="parallax-window"  data-parallax="scroll" data-image-src="img/bg/home-1280.jpg" data-android-fix="false">  
  </section>
    
15.05.2017 / 22:39