start css3 animation after entire page load

前端 未结 6 1593
渐次进展
渐次进展 2020-12-16 01:22

Anyone know how to start a css3 animation after the rest of the page loads completely (images and everything)?

I am using a delay right now to mimic it but this is n

6条回答
  •  旧巷少年郎
    2020-12-16 02:12

    That is beyond the scope of CSS, but it is quite simple to do with JQuery

    $(document).ready(function() {/*You code here*/ }
    

    Or read more about it here => http://api.jquery.com/ready/

    Place your animation code in a class, lets say .animation

    Then call that class on the element you wish to animate using JQuery .addclass() (http://api.jquery.com/addClass/)

    Something like this

       
    

提交回复
热议问题