sticky.wxml 377 B

12345678910
  1. <view class="tui-sticky-class">
  2. <!--sticky 容器-->
  3. <view style="height:{{stickyHeight}};background:{{bgColor}}" wx:if="{{isFixed}}"></view>
  4. <view class="{{ isFixed === true ? 'tui-sticky-fixed' : '' }}" style="top:{{isFixed?stickyTop+'px':'auto'}}">
  5. <slot name="header"></slot>
  6. </view>
  7. <!--sticky 容器-->
  8. <!--内容-->
  9. <slot name="content"></slot>
  10. </view>