Files
quinn-wx/components/picker/picker-item.wxml
2022-11-24 17:07:38 +08:00

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>