o1ranna1o Posted September 22 Share Posted September 22 how can I delay a block of code (for down arrow) from appearing for 4 seconds? Link to comment
o1ranna1o Posted September 22 Author Share Posted September 22 thank you, I'll try it. It goes in custom CSS, not in code block, yes? Link to comment
o1ranna1o Posted September 22 Author Share Posted September 22 so goes in the code block? Link to comment
o1ranna1o Posted September 22 Author Share Posted September 22 sorry...my skills are basically just enough to get me in trouble lol. Link to comment
tuanphan Posted October 16 Share Posted October 16 To do this, you can follow. #1. First, you need to find Code Block ID. In my example, it is: #block-yui_3_17_2_1_1729047562015_20924 #2. Next, use this code to Custom CSS box #block-yui_3_17_2_1_1729047562015_20924 { opacity: 0; visibility: hidden; transition: opacity 1s ease-in-out; animation: showElement 0s 4s forwards; } @keyframes showElement { to { opacity: 1; visibility: visible; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment