This article example shares the specific code for WeChat applet to achieve horizontal and vertical scrolling for your reference. The specific content is as follows Key points swiper internal set scroll-view Notice: 1. The vertical scroll height cannot be given in percentages but in px/rpx Code xml <swiper class="tab-box" current="{{currentTab}}" duration="300" bindchange="switchTab"> <swiper-item class="tab-content"> <scroll-view class="scroll-height" scroll-y="true" scroll-with-animation="{{true}}"> <view class="cont"> <view class="jira-card" wx:for="{{jiraArray}}" wx:for-index="idx" wx:for-item="itemJira" wx:key="idx"> <card itemJira="{{itemJira}}" data-item="{{itemJira}}" bindtap="goDetail"></card> </view> </view> </scroll-view> </swiper-item> <swiper-item class="tab-content"> <scroll-view class="scroll-height" scroll-y="true" scroll-with-animation="{{true}}"> <view class="cont"> <view class="jira-card" wx:for="{{jiraArray}}" wx:for-index="idx" wx:for-item="itemJira" wx:key="idx"> <card itemJira="{{itemJira}}" data-item="{{itemJira}}" bindtap="goDetail"></card> </view> </view> </scroll-view> </swiper-item> </swiper> <swiper class="tab-box" current="{{currentTab}}" duration="300" bindchange="switchTab"> <swiper-item class="tab-content"> <scroll-view class="scroll-height" scroll-y="true" scroll-with-animation="{{true}}"> <view class="cont"> <view class="jira-card" wx:for="{{jiraArray}}" wx:for-index="idx" wx:for-item="itemJira" wx:key="idx"> <card itemJira="{{itemJira}}" data-item="{{itemJira}}" bindtap="goDetail"></card> </view> </view> </scroll-view> </swiper-item> <swiper-item class="tab-content"> <scroll-view class="scroll-height" scroll-y="true" scroll-with-animation="{{true}}"> <view class="cont"> <view class="jira-card" wx:for="{{jiraArray}}" wx:for-index="idx" wx:for-item="itemJira" wx:key="idx"> <card itemJira="{{itemJira}}" data-item="{{itemJira}}" bindtap="goDetail"></card> </view> </view> </scroll-view> </swiper-item> </swiper> wxss .tab-box{ height: 1040rpx; } .scroll-height { height: 1040rpx; } js myAudit(){ this.setData({ currentTab:0, }) }, myInitiate(){ this.setData({ currentTab:1, // jiraArray:[] }) }, switchTab(event){ var cur = event.detail.current; var singleNavWidth = this.data.windowWidth / 5; this.setData({ currentTab: cur, navScrollLeft: (cur - 2) * singleNavWidth }); } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Linux C log output code template sample code
>>: Quickly solve the problem that the mysql57 service suddenly disappeared
This article describes how to use docker to deplo...
<br />This article will briefly introduce yo...
MySQL 5.5 installation and configuration method g...
Table of contents Preface style-loader css-loader...
In the previous article, I introduced the detaile...
1. When inserting, updating, or removing DOM elem...
Table of contents 1. Database Operation 2. Data T...
This article mainly introduces how to implement a...
Here are the types of data that can be verified l...
The domestic market still has a certain demand fo...
Common utf8mb4 sorting rules in MySQL are: utf8mb...
HTML forms are used to collect different types of...
The previous articles were all my own learning lo...
1.Tomcat Optimization Configuration (1) Change To...
To export MySQL query results to csv , you usuall...