17 lines
510 B
Plaintext
17 lines
510 B
Plaintext
|
<view
|
||
|
class="{{prefix}}__group"
|
||
|
bind:touchstart="onTouchStart"
|
||
|
catch:touchmove="onTouchMove"
|
||
|
bind:touchend="onTouchEnd"
|
||
|
bind:touchcancel="onTouchEnd"
|
||
|
>
|
||
|
<view
|
||
|
class="{{prefix}}__wrapper"
|
||
|
style="transition: transform {{ duration }}ms cubic-bezier(0.215, 0.61, 0.355, 1); transform: translate3d(0, {{ offset }}px, 0)"
|
||
|
>
|
||
|
<view class="{{prefix}}__item" wx:for="{{options}}" wx:key="index" wx:for-item="option" data-index="{{ index }}">
|
||
|
{{option.label}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|