You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
587 B

<template>
<view class="image-flow">
<image class="if-img" v-for="i in 5" :key="i"></image>
</view>
</template>
<script>
export default {
}
</script>
<style lang="scss">
.image-flow{
padding: 30upx 14upx;
background: #fff;
border-radius: 20upx;
font-size: 0;
.if-img{
margin: 0 14upx;
width: 200upx;
height: 200upx;
border-radius: 10upx;
background: skyblue;
&:nth-of-type(n+4){
margin-top: 28upx;
}
}
}
</style>