Hi
I need to delay to show up one of the div.
I tried to use the following code but it did not work:
.scrldown{
moz-animation: slide 1s ease 5s forwards;
-webkit-animation: slide 1s ease 5s forwards;
animation: slide 1s ease 5s forwards;
-o-animation: slide 1s ease 5s forwards;
-ms-animation: slide 1s ease 5s forwards;
-webkit-animation-delay: 4.30s;
-moz-animation-delay: 4.30s;
-o-animation-delay: 4.30s;
animation-delay: 4.30s;
}
Anyone knows the solution?
Thanks
M
Hey motylanogha!
Unfortunately we aren’t able to answer purely customization/custom code questions. However, I have a sample I posted on my own blog when I was playing around with delayed css you can try using as a reference to debug what you have: https://gist.github.com/DevinVinson/7508613#file-demo-html
Also try adding in !important on your declarations in case there is something else taking priority.
Cheers!
Devin