rangeSlider.wxml 1022 B

123456789101112
  1. <view class='range-slider' style='width:{{width}}rpx;height:{{height}}rpx'>
  2. <view class='range-bar' style='width:100%;height:{{barHeight}}rpx'>
  3. <view class='range-bar-bg' style='background-color:{{backgroundColor}}'></view>
  4. <view class='range-bar-progress' style='margin-left:{{progressBarLeft}}rpx;width:{{progressBarWidth}}rpx;background-color:{{activeColor}}'></view>
  5. </view>
  6. <view class='block' style='width:{{blockSize}}rpx;height:{{blockSize}}rpx;margin-left:{{minBlockLeft}}rpx;' catch:touchstart='_onBlockTouchStart' catch:touchmove='_onBlockTouchMove' catch:touchend='_onBlockTouchEnd' data-left='{{minBlockLeft}}' data-tag='minBlock'>
  7. <slot name='minBlock'></slot>
  8. </view>
  9. <view class='block' style='width:{{blockSize}}rpx;height:{{blockSize}}rpx;margin-left:{{maxBlockLeft}}rpx;' catch:touchstart='_onBlockTouchStart' catch:touchmove='_onBlockTouchMove' catch:touchend='_onBlockTouchEnd' data-left='{{maxBlockLeft}}' data-tag='maxBlock'>
  10. <slot name='maxBlock'></slot>
  11. </view>
  12. </view>