start css3 animation after entire page load

前端 未结 6 1591
渐次进展
渐次进展 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条回答
  •  Happy的楠姐
    2020-12-16 02:01

    function atload() {dom_rdy()}window.onload=atload;
    

    Paste it on the top of your js, and working with function dom_rdy() it will calls when dom is ready, without jQuery and others tons of code.

提交回复
热议问题