Eliminate flash of unstyled content

前端 未结 12 2002
一个人的身影
一个人的身影 2020-11-28 02:39

How do I stop the flash of unstyled content (FOUC) on a web page?

12条回答
  •  自闭症患者
    2020-11-28 03:16

    You could try this with vanilla

    function js_method(){
    //todos
    var elementDiv = document.getElementById("main");
    elementDiv.style.display ="block";
    }
    
    //todos
    

    Hello

提交回复
热议问题