小程序頭像組樣式

在这里插入图片描述

//html
<view class="zan_img">
					<view v-for="(item,index) in detail.mallInfoShareLikeDomainList" :key="index"
						:style="{transform:'translateX('+Number(-index*30)+'rpx)'}">
						<image :src="item.headUrl"></image>
					</view>
				</view>

//css
	.zan_img {
		width: 100%;
		height: auto;
		position: relative;
		display: flex;
		flex-direction: columnl;
		justify-content: flex-start;
		padding:10rpx;
		box-sizing: border-box;

		image {
			border-radius: 50%;
			margin-right: 1px;
			width: 40px;
			height: 40px;
			text-align: center;
			line-height: 50px;
			color: #fff;
		}
	}

版权声明:本文为qq_44242030原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。