ホームページ > 記事 > WeChat アプレット > カルーセルチャートのミニプログラムでクリックジャンプを実装する方法
アプレットがカルーセル チャートでクリック トゥ ジャンプを実装する方法
カルーセル チャートは、スワイパー コンポーネントを使用して実装できます。ページにジャンプします。これはナビゲーター コンポーネントを使用して実現できるため、カルーセル チャートをクリックしてページにジャンプする方法は、swiper コンポーネントの swiper-item コンポーネントにナビゲーターをネストすることです。
具体的な実装コードは次のとおりです:
1、WXML コード
<!--轮播图 --> <view class='swiperBanner'> <swiper indicator-dots='{{indicatorDots}}' autoplay='{{autoplay}}' interval='{{interval}}' duration='{{duration}}' circular='{{circular}}'> <swiper-item wx:for="{{imgUrls}}" wx:key='{{index}}'> <navigator url='{{item.link}}'> <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:'../activity/washCar1/index/index', url:'https://localhost/static/ttcf/img/banner8.png', }, { link: '../activity/Odysseus/index/index', url: 'https://localhost/static/ttcf/img/banner9.png', }, ],
PHP 中国語 Web サイト、多数の無料の 小規模プログラム開発チュートリアル、学習へようこそ!
以上がカルーセルチャートのミニプログラムでクリックジャンプを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。