提交 8b330098 编写于 作者: 雪洛's avatar 雪洛

fix: 修复H5端onReady内往画布添加的内容会一闪消失的Bug

同时对齐微信小程序画布大小改变内容不消失
上级 d9d25858
...@@ -121,8 +121,12 @@ export default { ...@@ -121,8 +121,12 @@ export default {
method(data) method(data)
} }
}, },
_resize () { _resize () {
wrapper(this.$refs.canvas) var canvas = this.$refs.canvas
var context = canvas.getContext('2d')
var imageData = context.getImageData(0, 0, canvas.width, canvas.height)
wrapper(this.$refs.canvas)
context.putImageData(imageData, 0, 0)
}, },
_touchmove (event) { _touchmove (event) {
event.preventDefault() event.preventDefault()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册