container.wxml 344 B

12345678910111213
  1. <canvas
  2. id="g6-canvas"
  3. type="2d"
  4. width="{{width * finalPixelRatio}}"
  5. height="{{(height) * finalPixelRatio}}"
  6. style="width: {{width}}px; height: {{height}}px; {{style}}"
  7. disable-scroll="{{true}}"
  8. bindtouchstart="ontouch"
  9. bindtouchcancel="ontouch"
  10. bindtouchmove="ontouch"
  11. bindtouchend="ontouch"
  12. binderror="error"
  13. ></canvas>