uni-app 异形轮播

11 篇文章 0 订阅
10 篇文章 1 订阅

html

		<view>
				<!-- previous-margin指的是当前图片的左边框距离屏幕最左边的距离 -->
				<swiper style="height: 600rpx;" previous-margin="140rpx" next-margin="140rpx" @change="handlechange" :current="mycurrent"   :indicator-dots="true"  :circular="true" :interval="3000" :duration="1000">
					<swiper-item v-for="i,index in 3" :key="i">
						<view :class="['swiper-item',index==mycurrent ? 'active' : '']">
							<img src="http://7dd-statics.7dingdong.com/data/files/store/20221104/6364d4c11ad66.jpg" style="width: 100%;height: 100%;"  alt="" srcset="">
						</view>
					</swiper-item>
				</swiper>
			</view>

js

data:
mycurrent:0


methods:{
		handlechange(e){
			this.mycurrent=e.detail.current
			this.posterImgdown=this.posterImg[e.detail.current]
			console.log(this.posterImg[e.detail.current],this.posterImgdown,'0000')
		},}

less

	.swiper-item{
			border-radius: 30rpx;
			overflow: hidden;
			// 像这种多张轮播图同时出现在一屏的情况下就不要指定width了,不然你会发现previous-margin和 next-margin会出现想不到的效果
			// 如果想要设置宽每一张轮播图的宽度,只需要设置previous-margin和next-margin就可以了,想要设置高度直接改下面的height就可以了
			// width: 450rpx;
			height: 85%;
			transform: scale(0.8);
			transition:all 0.5s ease;
			text-align: center;
			transition: all 0.5s ease-in-out;
			&.active{
				transform: scale(1);
			}
		}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值