首頁  >  文章  >  微信小程式  >  小程式怎麼做滾動圖片

小程式怎麼做滾動圖片

尚
原創
2020-03-21 14:05:364487瀏覽

小程式怎麼做滾動圖片

左右滑動可以切換展示圖片:

<!--pages/test/test.wxml-->
<!-- 组件 -->
<swiper>
  <swiper-item wx:for="{{imgUrls}}">
    <image src=&#39;{{item}}&#39; width="335" height="150" mode=&#39;widthFix&#39; class=&#39;img&#39; />
  </swiper-item>
</swiper>

pages/test/test.js:

// pages/test/test.js
Page({
  data: {
    imgUrls:[
      &#39;http://dl.bizhi.sogou.com/images/1440x900/2014/05/14/611368.jpg&#39;,
      &#39;http://dl.bizhi.sogou.com/images/1440x900/2013/10/19/394877.jpg&#39;,                &#39;http://img04.sogoucdn.com/app/a/100520093/ca86e620b9e623ff-d72d635343d5bade-dcf2acda7a45cb44f172db138bdf8d2d.jpg&#39;,
    ]
  },
  //事件处理函数
  toupper:function(){
    console.log("触发了toupper");
  }
})

pages/test/test.wxss:

.img{
 width: 100%;
}

心得:

swiper元件:滑桿視圖容器。

可以為swiper新增autoplay屬性,是之自動播放,例如:autoplay=”true」

swiper元件中使用的是image單標籤,而不是雙標籤(否則報錯)。

推薦:《小程式開發教學

以上是小程式怎麼做滾動圖片的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn