打开文件
/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了