PoppyShotts Posted December 6, 2023 Posted December 6, 2023 Hello, My client (www.jameshenshaw.co.uk) has sitewide animation set to slide up. I've set this as slow as possible. He wants the four icons on the homepage (second section down) to slide up much slower (one by one if possible).. or ideally, does anyone know any code so that we can slow down the sitewide animation? Thank you!! Poppy
Solution KwameAndCo Posted December 7, 2023 Solution Posted December 7, 2023 This would be a bit of a headache sitewide as you potentially have to manually assign classes to everything or use a wildcard plust !important. Most elements have the following inline CSS for transitions: So you'd essentially need to do something like: /*Squareskills change animation timing*/ .blockclass, .anotherblockclass { transition-duration: YOURTIMING!important; transition-delay: YOURTIMING!important; } In theory, for your use case it would probably be: #blockid .fluid-image-animation-wrapper { transition-duration: 1.2s!important; //slower slide in transition-delay: .3s!important; //increase slightly to stagger } With each subsequent block having a longer transition delay than the last. However, you may also want a media query so this is only on larger screens where they display inline as on mobile, where they are stacked, they will naturally fade in in sequence. Work With Me 🖥️💻📱 Please remember to tag me so that I get a notification and respond to your help requests. If my answers have helped you, please drop a like and mark my answer as best to help other users find solutions quickly. You can also thank me or make requests by buying me a coffee ☕. (Caffeine fuels me to take more requests) For Squarespace Tips & Tricks, visit @squareskills (Youtube 📺 Tutorials) For Premium and FREE plugins, visit Squareskills (Plugin Store) 🧩 For Custom Plugins email me 🧩
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment