Wow.js animation on mobile chrome triggers only when scrolling stops

I use wow.jsc animate.cssto display some effects when scrolling. On the desktop and mobile safari, everything works beautifully, but not on mobile chrome. I think chrome does different scrolls?

When I scroll down, content blocks should appear with a fading effect. But instead, it appears only if the scrolling is completely stopped. On mobile Safari, the effect appears when a block enters the viewing area. It is right.

Is there any way around animation on mobile chrome, for example, on mobile safari?

+4
source share
2

Safari Chrome iPhone 6, , . .

JS:

wow = new WOW(
    {
      boxClass:     'wow',      // default
      animateClass: 'animated', // default
      offset:       0,          // default
      mobile:       true,       
      live:         true        // default
    }
  )
wow.init();

Update: . fooobar.com/questions/697269/.... iOS. Apple , iOS 8 , Chrome iOS UIWebview WKWebView . , , , Google Chrome iOS WKWebView.

+2

body {
   overflow-x:hidden;
}

css.

0

All Articles