• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

微信小程序之swiper

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

swiper主要是轮播图,在微信小程序中我用的如下模式:

index.wxml:

<view class="swiper-tab">
  <view class="swiper-tab-list {{currentTab==0 ? 'on' : ''}}" data-current="0" bindtap="swichNav" data-post-id='0'>推荐</view>
  <view class="swiper-tab-list {{currentTab==1 ? 'on' : ''}}" data-current="1" bindtap="swichNav" data-post-id='1'>视频</view>
  <view class="swiper-tab-list {{currentTab==2 ? 'on' : ''}}" data-current="2" bindtap="swichNav" data-post-id='2'>本地</view>
</view>
<swiper current="{{currentTab}}" class="swiper-box"  duration="1000rpx" style="height:{{winHeight -0}}px" bindchange="bindChange">
    <swiper-item>
    
    </swiper-item>
    <swiper-item>
    <view class="wrap">视频</view>
    </swiper-item>
    <swiper-item>
    <view class="wrap">本地</view>
    </swiper-item>
  </swiper>

index.wxss:

.swiper-tab {
  display: flex;
  position:fixed;
  top:0;
  left:0;
  z-index:100;
  background: #fff;
  height:80rpx;
  width:800rpx;
  justify-content: space-between;
  border-bottom: 2rpx solid gainsboro;
  text-align: center;
  line-height:80rpx;
}

.swiper-tab-list {
  font-size: 30rpx;
  display: inline-block;
  width: 25%;
  color: #777;
}
.on {
  color: #7cba23;
  font-size:40rpx;
  border-bottom: 5rpx solid #7cba23;
}
.swiper-box{
 height: 100%;
 width: 100%;
 
}
.swiper-box{
  width:100%;
  margin-top:80rpx;
  font-size:32rpx;
 
}

index.js:

var app=getApp()
Page({
  data: {
    currentTab: 0,
    winWidth: 0,
    winHeight: 0,
  },
  onLoad:function(option){
    var that = this;
    wx:wx.getSystemInfo({
      success: function(res) {
        that.setData({
          winWidth:res.windowWidth,
          winHeight:res.windowHeight
        })
      }
    })
  },
  //点击切换
  swichNav: function (e) {
    var that=this;
    if (this.data.currentTab === e.target.dataset.current) {
      return false;
    } else {
      that.setData({
        currentTab: e.target.dataset.current
      })
    }
  },
  //滑动切换tab
  bindChange: function (e) {
    var that = this;
    that.setData({ currentTab: e.detail.current });
  }
})

更多效果连接:https://blog.csdn.net/qq273681448/article/details/71078017

希望对刚开始的你有所帮助!!


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap