index.wxml 600 B

123456789101112131415161718192021
  1. <movable-area
  2. class="slider-left-item"
  3. style="width: calc({{ openWidth }}px + {{ width }}rpx);margin-left: -{{openWidth}}px;"
  4. >
  5. <movable-view class="slider-left-content"
  6. damping="100"
  7. style="width: {{ width }}rpx"
  8. x="{{ x }}"
  9. direction="horizontal"
  10. bind:touchstart="handleTouchestart"
  11. bind:touchend="handleTouchend"
  12. bind:change="handleChange">
  13. <slot></slot>
  14. </movable-view>
  15. <view class='slider-left-handle'>
  16. <view
  17. bind:tap="handleDelete"
  18. style="width:{{ openWidth }}px"
  19. class='handle-delete'>{{butText}}</view>
  20. </view>
  21. </movable-area>