index.wxml 680 B

123456789101112
  1. <movable-area class="container" style="width: {{width}}rpx; height: {{height}}rpx;">
  2. <movable-view direction="horizontal" class="movable-content" out-of-bounds="{{out}}" damping="20" disabled="{{disabled}}" x="{{x}}" style="width: {{width + slideWidth}}rpx; height: {{height}}rpx;" inertia bindtouchend="onTouchEnd" bindtouchstart="onTouchStart" bindchange="onChange">
  3. <view class="left" style="width: {{width}}rpx; height: {{height}}rpx;">
  4. <slot name="left"></slot>
  5. </view>
  6. <view class="right" mut-bind:tap="onRightTap" style="width: {{slideWidth}}rpx; height: {{height}}rpx;">
  7. <slot name="right"></slot>
  8. </view>
  9. </movable-view>
  10. </movable-area>