拓扑topo新动画效果,纯js和canvas绘制,支持多平台uniapp,微信小程序展示

362 阅读1分钟

微信截图canvas.png canvas绘制拓扑动画展示网站:jays611(微信号) 点击网站跳转到地址

init(){
    this.domRef = this.$refs.canvas;
    this.w = this.domRef.width = this.domRef.clientWidth,
    this.h = this.domRef.height = this.domRef.clientHeight;
    this.ctx = this.domRef.getContext("2d");
    this.ctx.textAlign = "center";
    this.ctx.textBaseline = "top";
    this.ctx.font = "18px 黑体";
    this.dotMove();
},