当前位置:   article > 正文

微信小程序实现轮播图_微信小程序轮播图

微信小程序轮播图

微信小程序实现轮播图

问题背景

客户端开发和学习过程中,轮播图是一个很常见的功能,本文将介绍如何在微信小程序中实现轮播图。

问题分析

前一篇文章(参考 https://blog.51cto.com/baorant24/6188322 ),我们实现无限滚动的获奖名单使用了swiper组件,事实上,这个组件也可以用来实现轮播图,是一样的原理。 轮播图是隔段时间就会自动更换一张图片,可以用swiper组件来实现这一操作。 swiper组件由多个swiper-item组成,可以定义任意多个swiper-item。 swiper的相关属性如下: indicator-dots:Boolean类型。用来指示是否显示面板指示点(上文提到的3个小圆点就是面板指示点,默认为false。 autoplay:Boolean类型。用来决定是否自动播放,默认为false。 interval:Number类型。用来设置swiper-item的切换时间间隔,默认为5000毫秒。 circular:Boolean类型。用来设置swiper-item的循环滚动。

代码文件目录如下所示: image.png

问题解决

话啊不多说,直接说上代码。 (1)index.wxml文件,代码如下:

  1. <view>
  2. <swiper indicator-dots="true" autoplay="true" interval="2000">
  3. <swiper-item>
  4. <image class="image" src="../../static/img/kobe1.webp.jpg" mode="aspectFill"></image>
  5. </swiper-item>
  6. <swiper-item>
  7. <image class="image" src="../../static/img/科比2.jpg" mode="aspectFill"></image>
  8. </swiper-item>
  9. <swiper-item>
  10. <image class="image" src="../../static/img/u=30401.webp.jpg" mode="aspectFill"></image>
  11. </swiper-item>
  12. </swiper>
  13. </view>

(2)index.wxss文件,代码如下:

  1. /* 设置swiper组件的宽高 */
  2. swiper{
  3. width: 100%;
  4. height: 600rpx;
  5. }
  6. /* 设置swiper组件里面图片的宽高 */
  7. swiper image{
  8. width: 100%;
  9. height: 600rpx;
  10. }

运行结果如下: 1681385839548.gif

问题总结

本文介绍了如何在微信小程序中实现轮播图,有兴趣的同学可以进一步深入研究

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/590773
推荐阅读
相关标签
  

闽ICP备14008679号