marchbank Posted July 18, 2023 Posted July 18, 2023 (edited) I want to make just the SHAKERMAKER logo on the homepage have a 5 second fade in. Please let me know what I need to add into the Custom CSS. Thank you! website: shakermaker.online Edited July 18, 2023 by marchbank
MayaViolet Posted July 19, 2023 Posted July 19, 2023 Hi @marchbank, try this: /* Transition Animation Application */ .fe-block-yui_3_17_2_1_1686276277987_84481 { -webkit-animation: fadeIn 5s linear 0s forwards; // animation name, duration, timing-function, delay, direction animation: fadeIn 5s linear 0s forwards; opacity: 0; } @-webkit-keyframes fadeIn { 0% {opacity:0;} 100% {opacity:1;} } @keyframes fadeIn { 0% {opacity:0;} 100% {opacity:1;} } You can adjust the animation properties (on both lines) if you'd like to change the duration or add in a delay tuanphan, marchbank and Ziggy 2 1
marchbank Posted July 19, 2023 Author Posted July 19, 2023 Quick question tho - If I wanted it to wait one second before first appearing is there a way to delay the animation slightly before the fade it? Thank you!
MayaViolet Posted July 20, 2023 Posted July 20, 2023 11 minutes ago, marchbank said: Quick question tho - If I wanted it to wait one second before first appearing is there a way to delay the animation slightly before the fade it? Thank you! Absolutely! If you take note of the animation property, I included the syntax rules: // animation name, duration, timing-function, delay, direction Following that order, you can adjust what currently is set to "0s" to your preferred delay time. Let me know how that works! marchbank 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment