电速宝
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.wxml 809B

123456789101112131415161718192021222324252627
  1. <view class="slide-container {{isSuccess ? 'success' : ''}}" style="width: {{width}}px; height: {{height}}px;">
  2. <!-- 已滑动区域(用于显示颜色变化) -->
  3. <view
  4. class="slide-progress"
  5. style="width: {{progressWidth}}px; height: {{height}}px;"
  6. ></view>
  7. <!-- 背景轨道 -->
  8. <view class="slide-track">
  9. <text class="track-text">{{isSuccess ? successText : defaultText}}</text>
  10. </view>
  11. <!-- 滑块 -->
  12. <view
  13. class="slide-block"
  14. style="left: {{position}}px; width: {{blockSize}}px; height: {{blockSize}}px;"
  15. bindtouchstart="onTouchStart"
  16. bindtouchmove="onTouchMove"
  17. bindtouchend="onTouchEnd"
  18. >
  19. <icon
  20. class="block-icon"
  21. type="{{isSuccess ? 'success' : 'arrowright'}}"
  22. size="{{iconSize}}"
  23. ></icon>
  24. </view>
  25. </view>