animate-bg-canvas
v0.1.3
Published
animated canvas bg, blue, blocks
Downloads
13
Maintainers
Readme
animate-bg-canvas
使用说明
1. 浏览器
使用 animate-bg-canvas-browser.js
这个文件
// 新建对象时,会自动呈现动画效果
let animateCanvas = new AnimatedCanvasBG()
// 其它操作
animateCanvas.play() // 方块动起来
animateCanvas.stop() // 方块不动
2. Vue
npm i animate-bg-canvas
import { AnimatedCanvasBG } from "animate-bg-canvas"
export default {
mounted() {
this.height = innerHeight
this.animatedBg = new AnimatedCanvasBG()
},
beforeDestroy() {
this.animatedBg.destroy()
}
}
log
- 2023-02-14 v0.1