H5页面引入lottie.min.js

纵饮孤独 提交于 2020-12-04 13:33:57
<script type="text/javascript" src="/js/userPortrait/lottie.min.js"></script>

 

var select = function(s) {
    return document.querySelector(s);
  },
  selectAll = function(s) {
    return document.querySelectorAll(s);
  },
  animationWindow = select('#animationBox'),
  animData = {
    wrapper: animationWindow,
    // 渲染方式,svg、canvas、html(轻量版仅svg渲染)
    animType: 'svg',
    loop: true,
    prerender: true,
    autoplay: true,
    // 动画json文件路径
    path: '/js/userPortrait/data.json'
  },
  anim;
anim = lottie.loadAnimation(animData);
anim.setSpeed(1);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!