电速宝
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.wxml 780B

1234567891011121314151617181920212223242526
  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. <view class="slide-track">
  8. <text class="track-text">{{isSuccess ? successText : defaultText}}</text>
  9. </view>
  10. <!-- 滑块 -->
  11. <view
  12. class="slide-block"
  13. style="left: {{position}}px; width: {{blockSize}}px; height: {{blockSize}}px;"
  14. bindtouchstart="onTouchStart"
  15. bindtouchmove="onTouchMove"
  16. bindtouchend="onTouchEnd"
  17. >
  18. <t-icon
  19. class="block-icon"
  20. name="arrow-right"
  21. type="{{isSuccess ? 'success' : 'arrowright'}}"
  22. size="{{iconSize}}"
  23. ></t-icon>
  24. </view>
  25. </view>