<view class="xg-progress" catchtap="onClick">
  <view class="xg-cur-time">{{currentTimeText}}</view>
  <view class="xg-progress-inner">
    <progress class="xg-progress-cached"
    stroke-width="{{strokeWidth}}"
    backgroundColor="{{backgroundColor}}"
    activeColor="{{cacheColor}}"
    border-radius="{{borderRadius}}"
    percent="{{buffered}}"></progress>
    <slider
    class="xg-progress-played"
    bindchange="onProgressChange"
    bindchanging="onProgressChanging"
    bindtouchend="onTouchEnd"
    value="{{played}}"
    show-value="{{false}}"
    block-color="{{blockColor}}"
    block-size="{{blockSize}}"
    activeColor="{{playedColor}}"
    backgroundColor="rgba(255, 255, 255, 0)"/>
  </view>
  <view class="xg-cur-duration">{{durationText}}</view>
</view>
