Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 733 Bytes

README.md

File metadata and controls

35 lines (29 loc) · 733 Bytes

confetti-js

用法

<!--引用js-->
<script src="./dist/index.js"></script>

<!--可选:默认是 body 节点-->
<div id="box" style="position: relative;width: 300px;height: 500px;"></div>
(function() {
  var confetti = new Confetti({
    el: document.getElementById('box'), // 容器,默认是 body 节点
    width: 300, // 默认容器宽度
    height: 500,// 默认容器高度
    length: 30, // 纸屑数量
    duration: 6000,// 持续时长
    isLoop: true, // 是否循环
  });
})()

API

  confetti.setOptions({}) // 设置
  confetti.start() // 开始
  confetti.stop() // 暂停
  confetti.destroy() // 销毁

示例

Demo