index.wxml 608 B

12345678910
  1. <view class="l-sticky-item l-class">
  2. <view class="l-sticky-item-header-wrapper l-header-wrapper-class" style="height:{{isFixedTop&&stickyItemWrapperHeight?stickyItemWrapperHeight+'px':'auto'}}"></view>
  3. <view style="{{mode==='js'?(isFixedTop?'position:fixed;':''):''}} top:{{top}}rpx" class="l-sticky-item-header l-sticky-item-header{{mode==='js'?(isFixedTop?'-fixed l-header-sticky-class':''):(mode==='css'?'-sticky l-header-sticky-class':'')}} l-header-class">
  4. <slot name="header"></slot>
  5. </view>
  6. <view class="l-sticky-item-body l-body-class">
  7. <slot name="body"></slot>
  8. </view>
  9. </view>