uniapp-轮播图效果

uniapp轮播图_白嫖leader的博客-CSDN博客_uniapp轮播图

参考上面博主二次添加效果 下面小点样式效果 自定义

下面代码直接可用  对应效果

<template>
	<view>
		<!-- previous-margin指的是当前图片的左边框距离屏幕最左边的距离 -->
		<!-- vertical="true" //滑动方向是否为纵向 -->

		<view class="carousel">
			<swiper style="height: 363rpx;" indicator-color="pink" indicator-active-color="#fff" :autoplay="true"
				next-margin="80rpx" previous-margin="55rpx" @change="handlechange" :current="mycurrent"
				:indicator-dots="false" :circular="true" :interval="3000" :duration="1000">
				<swiper-item v-for="i,index in 3" :key="i">
					<view :class="['swiper-item',index==mycurrent ? 'active' : '']">
						<!-- {{i}} -->
						<img src="https://s2.loli.net/2022/05/11/rHeUj2V7pWg6MyQ.jpg" style="width: 100%;height: 100%;"
							alt="" srcset="">
					</view>
				</swiper-item>
			</swiper>
			<!-- 底部小点的样式 -->
			<view class="locations">
				<view v-for="(item,list) in 3" :key="list" class="dots" :class="[list==mycurrent ? 'dot' : '']"></view>
			</view>
		</view>

	</view>
</template>

<script>
	export default {
		data() {
			return {
				mycurrent: 0,
			}
		},
		methods: {
			handlechange(e) {
				this.mycurrent = e.detail.current
			}
		}
	}
</script>

<style lang="scss">
	.carousel {
		position: relative;

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

			&.active {
				transform: scale(1);
			}

			.indicator-dots {
				width: 30px;
			}
		}

		.locations {
			width: 100%;
			position: absolute;
			bottom: 20rpx;
			// left: 100rpx;
			display: flex;
			justify-content: center;
		}

		.dots {
			z-index: 9;
			border-radius: 3rpx;
			width: 20rpx;
			height: 6rpx;
			background-color: #D6D3D3;
			margin-right: 20rpx;
			text-align: center;
		}

		.dot {
			background-color: #FE6336;
		}
	}
</style>

  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值