PainterCore/painter.wxml
CPPAlien 34c16e8a36 fix
2019-11-13 19:03:20 +08:00

12 lines
475 B
Plaintext

<view style='position: relative;{{painterStyle}}{{customStyle}}'>
<canvas canvas-id="bottom" style="{{painterStyle}};position: absolute;" />
<canvas canvas-id="k-canvas" style="{{painterStyle}};position: absolute;" />
<canvas
canvas-id="top"
style="{{painterStyle}};position: absolute;"
bindtouchstart="onTouchStart"
bindtouchmove="onTouchMove"
bindtouchend="onTouchEnd"
bindtouchcancel="onTouchCancel"
disable-scroll="{{true}}" />
</view>