| 1234567891011121314151617181920212223242526 |
- <view class="slide-container {{isSuccess ? 'success' : ''}}" style="width: {{width}}px; height: {{height}}px;">
- <!-- 背景轨道 -->
- <view
- class="slide-progress"
- style="width: {{progressWidth}}px; height: {{height}}px;"
- ></view>
- <view class="slide-track">
- <text class="track-text">{{isSuccess ? successText : defaultText}}</text>
- </view>
-
- <!-- 滑块 -->
- <view
- class="slide-block"
- style="left: {{position}}px; width: {{blockSize}}px; height: {{blockSize}}px;"
- bindtouchstart="onTouchStart"
- bindtouchmove="onTouchMove"
- bindtouchend="onTouchEnd"
- >
- <t-icon
- class="block-icon"
- name="arrow-right"
- type="{{isSuccess ? 'success' : 'arrowright'}}"
- size="{{iconSize}}"
- ></t-icon>
- </view>
- </view>
|