当前位置: 移动技术网 > IT编程>开发语言>JavaScript > 微信小程序实现轮播图效果

微信小程序实现轮播图效果

2017年12月12日  | 移动技术网IT编程  | 我要评论

微信小程序实现轮播图,和网站,app的效果差不多,代码少,效率高。

先来看看效果图:

主要用swiper + swiper-item来实现

 <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>

一个简单的小案例,轮播图,代码简洁,功能强大。

源码点击下载

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网