Bottom elements should appear without delays.
Last element( contact form ) should appear when scrolled to bottom.
Bottom elements appear with delay
Last element not appearing
Page
Everything here:
https://newconfig.com/salesforce-newbies-sap-novices-and-big-data-beginners-need-experience-not-more-classes/
We tried modify offset values, throttleDelay and refreshing on load, nothing works. Problem still persists as mentioned above. Looks like an issue with longer pages or something.
I have the same problem on full page in a 1080p screen (mac, windows) But when I resize the windows it work (no problem on mobile only desktop).
Same here, even opening the dev tools cause the section to appear.
Ok, find out why (for me) it's because
body, html { overflow-x:hidden }
I remove this line for desktop and it's ok.
The slider is causing the issue. AOS is considering the height if the slider before it is being applied. Try loading AOS inside load() function . this solved my issue. hope it work for you.
jQuery(window).load(function(){
AOS.init({
duration: 1200,
});
});
Hi. I'm having this same issue it appears but after trying the latest fix from @shammi78 it's still stalling when trying to load the content below my header slider. Link and latest code below. Thanks for any help provided!
https://regentpointmarina.com/news/
<script>
jQuery(window).load(function(){
AOS.init({
disable: false,
.....
});
});
</script>
I'm also having this bug.
The elements which won't work are positioned after a slider made with Slick.
Tried without loading Slick:
Tried without the whole slider div ('smaller' page):
Tried without loading Slick ('bigger' page) and used AOS.init() after 100ms (setTimeout):
Tried without loading Slick ('bigger' page) and used AOS.init() after 1000ms (setTimeout):
Hi. I've tried changing the offset value to "50" for both for that specific
element (example below) and in the general settings loaded in the footer
JS. Still no luck.
Still trying to troubleshoot using the following link where as you can see,
the lower page content tied to AOS takes forever to load. Thanks for your
continued help!
https://regentpointmarina.com/news/
On Thu, Jul 4, 2019 at 9:18 AM Dev team Visions notifications@github.com Hi, Had the same issue and @shammi78's answer gave me the right hint. I was changing the height of some elements after
wrote:
Please replace data-aos-offset="200" to data-aos-offset ="50"AOS.init(). Therefore the solution was to trigger AOS.refresh() as a callback after the height (and the consequent animation) was applied.
Most helpful comment
Had the same issue and @shammi78's answer gave me the right hint.
I was changing the height of some elements after
AOS.init(). Therefore the solution was to triggerAOS.refresh()as a callback after the height (and the consequent animation) was applied.