leiroc / wipe

Wipe是一款基于HTML5 canvas的移动端,涂抹,自动播放涂抹轨迹,刮刮乐的插件。(The movement of the wiper is a based on HTML 5 canvas, daub, automatic playback daub trajectory, scratch music plug-in.)
https://animpen.com/
Other
68 stars 24 forks source link

没有考虑滚动条件非顶部的情况 #7

Open huangguangjie opened 7 years ago

huangguangjie commented 7 years ago

插件存在一个bug,就是当滚动条非罢于顶部的时候,发现涂沫的时候,涂沫位置并非于当前位置。我的修改意见是这样: // ... winTcanvasXY: function (canvas, x, y) { var cC = canvas.getBoundingClientRect(); return { x: x - cC.left, y: y - cC.top - document.body.scrollTop //注意这里,把document.body.scrollTop也要减掉。 } }, //...

Marszed commented 7 years ago

大兄弟,这里获取scrollTop有兼容问题 https://github.com/leiroc/wipe/issues/9