CRMEB删除公众号首页logo动画

打开文件

/application/wap/view/first/index/index.html  

<div class="lottie-bg"><div id="lottie"></div></div>
<script>
    var anim;
    var elem = document.getElementById('lottie');
    //elem.style.display = 'none';
    var animData = {
        container: elem,
        renderer: 'svg',
        loop: true,
        autoplay: true,
        rendererSettings: {
            progressiveLoad:false,
            imagePreserveAspectRatio: 'xMidYMid meet'
        },
        path: '{__WAP_PATH}crmeb/js/animation.json'
    };
    anim = lottie.loadAnimation(animData);
    anim.setSubframe(false);
    setTimeout(
        function () {
            $('.lottie-bg').hide();
        },2000)
</script>

找到以上代码删掉就OK了

猜你喜欢

转载自blog.csdn.net/sugar1569/article/details/83443288