微信小程序轮播图
有勇气的牛排
1101
微信开发
2021-08-26 21:57:34
1 index.html
< view>
< swiper class="swiper" indicator-dots="true" autoplay="true" interval="5000" duration="1000">
< block wx:for-items="{{swiperImage}}" wx:key="key">
< swiper-item>
< image src="{{item.url}}" style="width:100%;height:100%" class="slide-image" mode="aspectFill" />
< /swiper-item>
< /block>
< /swiper>
< /view>
2 index.js
data: {
data: {
swiperImage: [
{ url: 'https://static.couragesteak.com/article/pe/swiper/swiper3.jpg' },
{ url: 'https://static.couragesteak.com/article/pe/swiper/swiper2.jpg' },
{ url: 'https://static.couragesteak.com/article/pe/swiper/swiper1.jpg' }
],
},
<h2><a id="1_indexhtml_0"></a>1 index.html</h2>
<pre><div class="hljs"><code class="lang-html">< view>
< swiper class="swiper" indicator-dots="true" autoplay="true" interval="5000" duration="1000">
< block wx:for-items="{{swiperImage}}" wx:key="key">
< swiper-item>
< image src="{{item.url}}" style="width:100%;height:100%" class="slide-image" mode="aspectFill" />
< /swiper-item>
< /block>
< /swiper>
< /view>
</code></div></pre>
<h2><a id="2_indexjs_12"></a>2 index.js</h2>
<pre><div class="hljs"><code class="lang-js"><span class="hljs-attr">data</span>: {
<span class="hljs-attr">data</span>: {
<span class="hljs-attr">swiperImage</span>: [
{ <span class="hljs-attr">url</span>: <span class="hljs-string">'https://static.couragesteak.com/article/pe/swiper/swiper3.jpg'</span> },
{ <span class="hljs-attr">url</span>: <span class="hljs-string">'https://static.couragesteak.com/article/pe/swiper/swiper2.jpg'</span> },
{ <span class="hljs-attr">url</span>: <span class="hljs-string">'https://static.couragesteak.com/article/pe/swiper/swiper1.jpg'</span> }
],
},
</code></div></pre>
留言