小程序初學
在我還沒接觸到微信小程序之前,通常使用輪播要么手寫或使用swiper插件去實現,當我接觸到微信小程序之后,我看到了微信小程序的強大之處,讓我為大家介紹一下吧!
swiper與swiper-item一起使用可以做輪播圖
基本使用,上代碼:
<swiper class="swiper-container"><swiper-item><view class="item">A</view></swiper-item><swiper-item><view class="item">B</view></swiper-item><swiper-item><view class="item">C</view></swiper-item>
</swiper>