This article mainly introduces the effect of carousel chart in WeChat applet in detail, which has certain reference value. Interested friends can refer to
WeChat applet to realize carousel chart. The effect is similar to that of websites and APPs, with less code and high efficiency.
Let’s take a look at the renderings first:
##Mainly use swiper + swiper-item to achieve<view class='swiper'>滑块视图容器</view> <!-- indicator-dots='true' 是否显示指示点 默认 false indicator-color:指示点颜色 indicator-active-color:选中的指示点颜色 autoplay:是否自动切换 默认:false interval:自动切换时间间隔 duration:滑动动画时长 vertical 是否改成纵向, 默认 false --> <swiper indicator-dots='true' indicator-color='gray' indicator-active-color='green' autoplay='true' interval='5000' duration='500'> <block wx:for="{{imgUrl}}"> <swiper-item class="item_image"> <image src='{{item}}' class='swiper_image' mode="aspectFill"></image> </swiper-item> </block> </swiper>
The above is the detailed content of Sharing examples of WeChat applet completing carousel effect. For more information, please follow other related articles on the PHP Chinese website!