Uniapp swiper插件实现轮播图和轮播消息

Uniapp swiper实现轮播图和轮播消息

属性默认值作用
circularfalse是否采用衔接滑动
autoplayfalse是否自动切换
mode物品裁剪、缩放的模式
aspectFill保持纵横比缩放图片,只保持图片的短边能完全显示出来
interval5000自动切换时间间隔
duration500滑动动画时长
vertical滑动方向是否为纵向
indicator-dotsfalse面板指示点的显示
indicator-color指示点颜色
indicator-active-color#000000当前选中的指示点颜色

template代码

<template>
	<view class="homeLayout">
		<!-- 轮播图 -->
		<view class="banner">
			<swiper circular indicator-dots indicator-color="rgba(255,255,255,0.5)"
			indicator-active-color="#fff" autoplay>
				<swiper-item v-for="item in bannerList" :key="item._id">
					<image :src="item.picurl" mode="aspectFill"></image>
				</swiper-item>
			</swiper>
		</view>
		<!-- 公告轮播图 -->
		<view class="notice">
			<!-- 左侧图标 -->
			<view class="left">
				<uni-icons type="sound-filled" size="20" color="#28b389"></uni-icons>
				<text class="text">公告</text>
			</view>
			<view class="center">
				<swiper vertical autoplay interval="1500" duration="300" circular>
					<swiper-item v-for="item in noticeList" :key="item._id">
						{{item.title}}
					</swiper-item>
				</swiper>
			</view>
			<!-- 右侧箭头 -->
			<view class="right">
				<uni-icons type="right" size="16" color="#333"></uni-icons>
			</view>
		</view>
	</view>
</template>

css样式

scss插件可以在插件商场里下载

<style lang="scss" scoped>
	.homeLayout{
		//轮播图样式
		.banner{
			width: 750rpx;
			padding: 30rpx 0;
			
			swiper{
				width: 750rpx;
				height: 340rpx;
				
				&-item{
					//讨论&-item的含义
					width: 100%;
					height: 100%;
					padding: 0 30rpx;
					
					image{
						width: 100%;
						height: 100%;
						border-radius: 10rpx;
					}
					
				}
			}
		}
		//公告的样式
		.notice{
			width: 690rpx;
			height: 80rpx;
			line-height: 80rpx;
			background: #f9f9f9;
			margin: 0 auto;
			border-radius: 80rpx;
			display: flex;
			
			.left{
				width: 140rpx;
				display: flex;
				align-items: center;
				justify-content: center;
				
				.text{
					color: #28b389;
					font-weight: 600;
					font-size: 28rpx;
				}
			}
			.center{
				//可以理解为元素在弹性布局中可以均匀地分配空间,
                //既可以放大也可以缩小,
                //并且在分配多余空间之前,
                //它会占据尽可能少的空间。
				flex: 1;
				
				swiper{
					height: 100%;
					
					&-item{
						height: 100%;
						font-size: 30rpx;
						color: #666;
						overflow: hidden;
						white-space: nowrap;
						text-overflow: ellipsis;
					}
				}
			}
            .right{
				width: 70rpx;
				display: flex;
				align-items: center;
				justify-items: center;
			}
		}
	}
</style>

发现问题

轮播图的图转了一半。
解决方法:在App.vue文件中的style标签中添加代码

	/*每个页面公共css */
	view swiper swiper-item{
		box-sizing:border-box;
	}

最终效果

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值