首頁 > 微信小程式 > 小程式開發 > 小程式如何在輪播圖中實現點擊跳轉

小程式如何在輪播圖中實現點擊跳轉

angryTom
發布: 2020-03-25 11:37:13
原創
7629 人瀏覽過

小程式如何在輪播圖中實現點擊跳轉

小程式如何在輪播圖中實現點擊跳轉

輪播圖可以使用swiper元件來實現,點擊跳轉頁面可以使用navigator元件來實現,所以實現點擊輪播圖跳轉頁面的方法是:在swiper元件的swiper-item元件裡嵌套一個navigator即可。

具體實作程式碼如下:

1、WXML程式碼

  <!--轮播图 -->
  <view class=&#39;swiperBanner&#39;>
    <swiper indicator-dots=&#39;{{indicatorDots}}&#39; autoplay=&#39;{{autoplay}}&#39; interval=&#39;{{interval}}&#39; duration=&#39;{{duration}}&#39; circular=&#39;{{circular}}&#39;>
      <swiper-item  wx:for="{{imgUrls}}" wx:key=&#39;{{index}}&#39;>
        <navigator url=&#39;{{item.link}}&#39;>
          <image src="{{item.url}}" class="slide-image" mode="aspectFill"></image>
        </navigator> 
      </swiper-item>
    </swiper>
  </view>
</view>
登入後複製

2、WXSS程式碼

/* 轮播 */
.swiperBanner{
  width:100%;
  height:420rpx !important;
  margin:0 auto; 
}
.swiperBanner image{
  width:100%;
  height:420rpx !important;
}
swiper {
  width:100%;
  height:420rpx !important;
}
登入後複製

3、 JS代碼

indicatorDots:false,
   autoplay:true,
   interval:3000,
   duration: 800,
   circular:true,
    // 轮播图
   imgUrls: [
     {
       link:&#39;../activity/washCar1/index/index&#39;,
       url:&#39;https://localhost/static/ttcf/img/banner8.png&#39;,
 
     },
     {
       link: &#39;../activity/Odysseus/index/index&#39;,
       url: &#39;https://localhost/static/ttcf/img/banner9.png&#39;,
 
     },
 
   ],
登入後複製

PHP中文網,大量免費小程式開發教程,歡迎學習!

以上是小程式如何在輪播圖中實現點擊跳轉的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板