onload将类添加到文档中

时间:2015-11-21 17:23:25

标签: onload addclass

只需在页面加载时,我就想在整个文档中添加模糊

    function loading() {

    document.getElementById('.header').addClass('loading-style');

    setTimeout(function(){}, 3000);
}

并且有<body onload="loading()">

最后风格:

.loading-style {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

1 个答案:

答案 0 :(得分:0)

function loading() {

    $(document).ready(function(){
        $('body').addClass('loading-style')
    })

    setTimeout(function(){}, 3000);
}