小程序swiper根据页面长度滑动的案例:在对应的js文件中添加以下代码:get_wxml: function (className, callback) {wx.createSelectorQuer
小程序swiper根据页面长度滑动的案例:
在对应的js文件中添加以下代码:
get_wxml: function (className, callback) {
wx.createSelectorQuery().selectAll(className).boundinGClientRect(callback).exec()
},
//获取节点信息
this.get_wxml(`#cont` + current, (rects) => {
console.log(rects)
let newHeight = rects[0].height
this.setData({
heights: newHeight
})
})
在对应的wxml文件中添加以下代码:
<view class="Goods_info_box">
<view class="tba_contain">
<!-- 导航栏 -->
<scroll-view class="tab" scroll-x scroll-left="{{tabScroll}}" scroll-with-animation="true">
<block wx:for="{{menuList}}" wx:key="index">
<view class="tab-item {{currentTab == index ? 'active' : ''}}" data-current="{{index}}" bindtap='clickMenu' style="width:{{100/menuList.length}}%">
<text>{{item.name}}</text>
</view>
</block>
</scroll-view>
<!-- 页面 -->
<swiper class="list_content" duration="500" current="{{currentTab}}" bindchange="changeContent" style="height:{{heights}}px">
<swiper-item class="content-item" wx:for="{{menuList}}" wx:key="index" >
<view >
<text class='reason_txt'> {{item.name}}</text>
</view>
<view id='cont{{index}}' class="swiper-com" style="color:#000;font-size:40rpx;">
<rich-text nodes="{{item.content}}" ></rich-text>
</view>
</swiper-item>
</swiper>
</view>
</view>
--结束END--
本文标题: 小程序swiper怎么根据页面长度滑动
本文链接: https://lsjlt.com/news/116583.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0