Open fullblownstudio opened 5 years ago
990px seems to be when the MegaMenu converts to Mobile. Could there be a conflict?
Yes, there seems to be a conflict in one of these CSS files.
http://dev.bdpradio.com/webslidex/webslidemenu_layout4/webslidemenu.css http://dev.bdpradio.com/webslidex/webslidemenu_layout4/color-skins/white-gry.css http://dev.bdpradio.com/webslidex/webslidemenu_layout4/dropdown-effects/fade-down.css
The DIVS disappearing might have to do with this CSS (below) found in http://dev.bdpradio.com/webslidex/webslidemenu_layout4/webslidemenu.css
However, removing that doesn't fix the Animations on Mobile iOS, iPhone XS/Chrome Browser. Here's a screenshot of the frozen animations. http://dev.bdpradio.com/images/iphone-aos.jpg
/ ================== Mobile Menu Change Break Point ================== / @media only screen and (max-width: 991px) {
/ ================== Mobile Base CSS ================== / html { overflow: hidden; height: 100%; -webkit-overflow-scrolling: touch; }
body { height: 100%; overflow-y: auto; overflow-x: hidden; }
}
This is: Bug
Specifications
Expected Behavior
Any DIV with class="aos-animation" should not disappear when the browser window is less than 990px wide. Animations should also work on Mobile.
Actual Behavior
Any DIV with class="aos-animation" is disappearing when the browser window is less than 990px wide. Animations are also frozen on Mobile and some DIVs are gone.
Steps to Reproduce the Problem
Animations work great if browser window more than 990px wide...
Detailed Description
I am loading some content via AJAX, could that be the problem? But it works fine when browser is wider than 990px. I'm also using Bootstrap v3.3.7.
I am using the following JS: AOS.init(); (works on desktop)
I have tried these alternatives: AOS.init({ startEvent: 'load' }); // breaks desktop & mobile
Possible Solution
No idea. Thanks for your help!