码迷,mamicode.com
首页 > 微信 > 详细

微信小程序轮播图

时间:2018-08-20 13:08:03      阅读:519      评论:0      收藏:0      [点我收藏+]

标签:fill   height   方案   show   color   小程序   marker   pac   bsp   

  微信小程序制作轮播图时遇到的问题,主要是对前端的不熟悉造成的.开始的问题是我想把轮播图做成圆角的,结果一直特别丑...直接放出解决之后的方案:

wxml:

<view class=‘swiper‘>
    <swiper indicator-dots="{{indicatorDots}}"autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
    <block wx:for="{{imgUrls}}">
        <swiper-item>
        <image src="{{item}}" class="swiper-pic" mode=‘aspectFill‘ />
        </swiper-item>
    </block>
    </swiper>
</view>

.swiper{
margin-left: 5%;
margin-top: 1px;
margin-right: 5%;
border-radius: 20rpx 20rpx 20rpx 20rpx;
/* box-shadow: 1rpx 1rpx 1rpx 1rpx rgb(126, 53, 160); */万恶之源
}
.swiper-pic{
width: 100%;
height: 100%;
overflow:show;
will-change: transform;
border-radius: 20rpx 20rpx 20rpx 20rpx;
}
 

 

//index.js
//获取应用实例
const app = getApp()

Page({
    data: {
        
        userInfo: {},
        hasUserInfo: false,
        canIUse: wx.canIUse(‘button.open-type.getUserInfo‘),
        markers: [],
        imgUrls: [
            // ‘../img/test.png‘,
            ‘http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg‘,
            ‘http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg‘,
            ‘http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg‘,
        ],
        tips: {
            
        },
        
        indicatorDots: true,
        autoplay: true,
        interval: 5000,
        duration: 1000
    },
})

成果图:技术分享图片

 

微信小程序轮播图

标签:fill   height   方案   show   color   小程序   marker   pac   bsp   

原文地址:https://www.cnblogs.com/donke/p/9504872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!