微信小程序: swiper 的 swiper-item 下 scroll-view 无法滚动
Posted 大大大大大桃子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序: swiper 的 swiper-item 下 scroll-view 无法滚动相关的知识,希望对你有一定的参考价值。
微信开发工具 v1.02.1802080
swiper-item 和 scroll-view 及其中间的所有 view 都需要设置 height: 100%;
设置具体初始高度: style="height:winHeightpx"
如果仍然有问题, 需要设置scroll-view
的滚动方向 :
scroll-x="false"
scroll-y="true"
示例代码:
wxml 中:
<swiper current="currentTab"
style="height:winHeight - 31px"
class="swiper-box"
duration="300">
<!-- 已承担 -->
<swiper-item class="swiper-items">
<scroll-view scroll-x="false" scroll-y="true" class='scroll-views'>
<block wx:for="items" wx:key="col_index">
<template is="undertookCard" data="...item"/>
</block>
</scroll-view>
</swiper-item>
</swiper>
wxss 中;
.swiper-box
display: block;
width: 100%;
height: 100%;
margin-top: 92rpx;
overflow: hidden;
.swiper-items
height: 100%;
.scroll-views
height: 100%;
以上是关于微信小程序: swiper 的 swiper-item 下 scroll-view 无法滚动的主要内容,如果未能解决你的问题,请参考以下文章
微信小程序中使用swiper禁止用户上下滑动且不影响外部界面的滑动