i have the Reveal sections on scroll works in the Desktop screen but not in mobile screen,
how to make it work for mobile screen
here my website link : https://b6448a-44.myshopify.com/
A user is experiencing an issue where “Reveal sections on scroll” animations work on desktop but fail to display on mobile devices.
Suggested Solutions:
Check JavaScript/Media Queries: Verify that scroll reveal functions aren’t disabled for mobile devices in the code. Look for media queries that might prevent animations on smaller screens.
Library Configuration: If using libraries like AOS (Animate On Scroll), ensure they’re properly configured for mobile devices.
CSS Adjustments: Apply mobile-specific CSS to enable scroll animations:
@media only screen and (max-width: 768px) {
.reveal-on-scroll {
opacity: 1 !important;
transform: translateY(0) !important;
transition: all 1s ease-in-out !important;
}
}
Status: The issue remains unresolved, with testing needed to determine which solution works for the specific implementation.
i have the Reveal sections on scroll works in the Desktop screen but not in mobile screen,
how to make it work for mobile screen
here my website link : https://b6448a-44.myshopify.com/
Hi @ai41
To make the “Reveal sections on scroll” feature work on mobile screens, you likely need to adjust the CSS or JavaScript for mobile responsiveness. Here’s what you can do:
@media only screen and (max-width: 768px) {
.reveal-on-scroll {
opacity: 1 !important;
transform: translateY(0) !important;
transition: all 1s ease-in-out !important;
}
}
→ Test and adjust accordingly to make it work on mobile.
If you have other questions, I am willing to answer them more.
Best regards,
Daisy