WOW icon indicating copy to clipboard operation
WOW copied to clipboard

Change Data/Delay on mobile

Open damiancpalmer opened this issue 8 years ago • 2 comments

Is there a way to set a different delay and duration based for mobile devices? The delays that look good on a desktop take too long for mobile. How can I fix this other than just disabling wow.js?

damiancpalmer avatar Sep 05 '16 23:09 damiancpalmer

same problem. Any solution yet?

dpmango avatar Oct 07 '17 23:10 dpmango

If there isn't any formal solution yet, you can do:

@media only screen and (max-width:768px) {
  
  .wow
  {
    animation-delay: 0s!important;
  }

}

ncamaa avatar Dec 31 '17 13:12 ncamaa