Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #314019

    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

    #315169

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.