小程序--轮播图

Posted 好笑。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序--轮播图相关的知识,希望对你有一定的参考价值。

wxml页面

  interval :图片跳转的时间间隔

  autoplay:自动切换图片

  indicator-dots:图片下方的小圆点

  duration:滑动动画时长

// 注意⚠️:swiper组组件的直接子元素只可以是swiper-item,如果放置其他组件会自动被删除。但swiper-item下是可以放其他组件或者元素的
<
swiper indicator-dots=\'true\' autoplay=\'true\' interval=\'5000\' vertical="{{false}}" duration="500"> <swiper-item> <image src="/images/post/post-1@text.jpg"></image> </swiper-item> <swiper-item> <image src="/images/post/post-2@text.jpg"></image> </swiper-item> <swiper-item> <image src="/images/post/post-3@text.jpg"></image> </swiper-item> </swiper>

wxss页面

swiper{
  width: 100%;
  height: 600rpx;
}
swiper image{
  width: 100%;
  height: 600rpx;
}

效果图:

    

 

以上是关于小程序--轮播图的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序之轮播图

微信小程序之轮播图的实现(附效果图和源码)

微信小程序|组件-轮播图swiper

微信小程序|组件-轮播图swiper

原生小程序翻页效果轮播图

小程序swiper轮播图不显示