Adfero/jScrollability

mobile device

Opened this issue · 1 comments

Hi everyone!
How I can turn on scroll effect in mobile devices? Do you can help me?

Since the plugin use the top CSS property, I simply force the top property on desktop using media queries.
The plugin will continue to calculate the top but it will be overridden by your class.

@media screen and (max-width: 568px) {
    .element {
        position: relative; //if you need it
        top: 0 !important; // or whatever you need
    }
}