위 챗 애플 릿 스크롤 Tab 좌우 슬라이딩 전환 가능
효과:
최종 효 과 는 위 와 같다.질문:
1.tab 제목 은 모두 8 개 이기 때문에 한 화면 에 모두 표시 할 수 없습니다.
2.tab 내용 구역 이 좌우 로 미 끄 러 지 며 전환 할 때 tab 제목 은 바로 표시(active)합 니 다.
3.active 의 제목 이 현재 화면 에 표시 되 지 않 을 때 현재 화면 에 표시 되도록 해 야 합 니 다.
wxml 구조
tab 제목 은 8 개 줄 로 되 어 있 기 때문에 scroll-view 구성 요 소 를 사용 하여 가로로 스크롤 할 수 있 습 니 다.
tab 내용 좌우 슬라이딩 전환 가능,swiper 구성 요소 사용 가능
게 으 름 을 피 우기 위해 서 데 이 터 는 모두 wx:for 를 통 해 반복 된다.
설명:
1.data-current 속성 설정:현재 항목 을 클릭 할 때 이벤트 swichNav 에서 e.dataset.current 를 클릭 하여 클릭 한 목표 값 을 가 져 옵 니 다.
2.swiper 구성 요소 의 current 구성 요 소 는 현재 어느 페이지 를 표시 하 는 지 제어 하 는 데 사 용 됩 니 다.
3.swiper 구성 요소 바 인 딩 change 이벤트 switchTab,e.detail.current 를 통 해 현재 페이지 가 져 오기
<view >
<scroll-view scroll-x="true" class="tab-h" scroll-left="{{scrollLeft}}">
<view class="tab-item {{currentTab==0?'active':''}}" data-current="0" bindtap="swichNav"> </view>
<view class="tab-item {{currentTab==1?'active':''}}" data-current="1" bindtap="swichNav"> </view>
<view class="tab-item {{currentTab==2?'active':''}}" data-current="2" bindtap="swichNav"> </view>
<view class="tab-item {{currentTab==3?'active':''}}" data-current="3" bindtap="swichNav"> </view>
<view class="tab-item {{currentTab==4?'active':''}}" data-current="4" bindtap="swichNav"> </view>
<view class="tab-item {{currentTab==5?'active':''}}" data-current="5" bindtap="swichNav"> </view>
<view class="tab-item {{currentTab==6?'active':''}}" data-current="6" bindtap="swichNav"> </view>
<view class="tab-item {{currentTab==7?'active':''}}" data-current="7" bindtap="swichNav"> </view>
</scroll-view>
<swiper class="tab-content" current="{{currentTab}}" duration="300" bindchange="switchTab"
style="height:{{winHeight}}rpx">
<swiper-item wx:for="{{[0,1,2,3,4,5,6,7]}}">
<scroll-view scroll-y="true" class="scoll-h" >
<block wx:for="{{[1,2,3,4,5,6,7,8]}}" wx:key="*this">
<view class="item-ans">
<view class="avatar">
<image class="img" src="http://ookzqad11.bkt.clouddn.com/avatar.png"></image>
</view>
<view class="expertInfo">
<view class="name"> </view>
<view class="tag"> </view>
<view class="answerHistory">134 ,2234 </view>
</view>
<navigator url="/pages/askExpert/expertDetail" class="askBtn"> TA</navigator>
</view>
</block>
</scroll-view>
</swiper-item>
</swiper>
</view>
js 부분위 챗 애플 릿 이 개발 되 고 있 습 니 다.개인 적 으로 vue 처럼 느껴 지고 데이터 로 보기 의 업 데 이 트 를 구동 합 니 다.그래서 애플 릿 에 서 는 dom 을 직접 조작 할 수 없고 jquery 같은 라 이브 러 리 도 사용 할 수 없습니다.
var app = getApp();
Page({
data:{
winHeight:"",//
currentTab:0, //
scrollLeft:0, //tab
expertList:[{ //
img:"avatar.png",
name:" ",
tag:" ",
answer:134,
listen:2234
}]
},
//
switchTab:function(e){
this.setData({
currentTab:e.detail.current
});
this.checkCor();
},
//
swichNav:function(e){
var cur=e.target.dataset.current;
if(this.data.currentTaB==cur){return false;}
else{
this.setData({
currentTab:cur
})
}
},
// , tab 。
checkCor:function(){
if (this.data.currentTab>4){
this.setData({
scrollLeft:300
})
}else{
this.setData({
scrollLeft:0
})
}
},
onLoad: function() {
var that = this;
//
wx.getSystemInfo( {
success: function( res ) {
var clientHeight=res.windowHeight,
clientWidth=res.windowWidth,
rpxR=750/clientWidth;
var calc=clientHeight*rpxR-180;
console.log(calc)
that.setData( {
winHeight: calc
});
}
});
},
footerTap:app.footerTap
})
wxss 스타일
.tab-h{
height: 80rpx;width: 100%; box-sizing: border-box;overflow: hidden;line-height: 80rpx;background: #F7F7F7; font-size: 16px; white-space: nowrap;position: fixed;top: 0; left: 0; z-index: 99;}
.tab-item{margin:0 36rpx;display: inline-block;}
.tab-item.active{color: #4675F9;position: relative;}
.tab-item.active:after{ content: "";display: block;height: 8rpx;width: 52rpx;background: #4675F9;position: absolute; bottom: 0;left: 5rpx;border-radius: 16rpx;}
.item-ans{ width: 100%;display: flex; flex-grow: row no-wrap;justify-content: space-between; padding: 30rpx;box-sizing: border-box; height: 180rpx;align-items: center;border-bottom: 1px solid #F2F2F2;}
.avatar{width: 100rpx;height: 100rpx;position: relative;padding-right: 30rpx;}
.avatar .img{width: 100%;height: 100%;}
.avatar .doyen{width: 40rpx;height: 40rpx;position: absolute;bottom: -2px;right: 20rpx;}
.expertInfo{font-size: 12px;flex-grow: 2;color: #B0B0B0;line-height: 1.5em;}
.expertInfo .name{font-size: 16px;color:#000;margin-bottom: 6px;}
.askBtn{ width: 120rpx;height: 60rpx;line-height: 60rpx;text-align: center;font-size: 14px; border-radius: 60rpx;border: 1px solid #4675F9; color:#4675F9;}
.tab-content{margin-top: 80rpx;}
.scoll-h{height: 100%;}
궁금 한 점 이 있 으 시 면 메 시 지 를 남기 거나 본 사이트 의 커 뮤 니 티 에 가서 토론 을 교류 하 세 요.읽 어 주 셔 서 감사합니다. 여러분 을 도 울 수 있 기 를 바 랍 니 다.본 사이트 에 대한 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
OpenSSL 생 성 ssl 인증서텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.