uniapp橫向滾動


scroll-x="true" 出現橫向滾動

scroll-with-animation="true" 橫向滾動有動畫
<scroll-view class="scrool-more" scroll-x="true" scroll-with-animation="true">
	<text class="label-name" v-for="(item,index) in listTypecont" 
	:key="index">{{item.name }}</text>		
</scroll-view>

listTypecont:[
	{name:"張三"},
	{name:"張三"},
	{name:"張三"},
	{name:"張三"},
	{name:"張三"},
	{name:"張三"},
	{name:"張三"},
	{name:"張三"},
	{name:"張三"},
	{name:"張三"},
]


	
.scrool-more{
	white-space: nowrap; 必須要這個屬性,否者不能出現橫線滾動
	width: 100%;  
	height: 56rpx;
	display: inline-block; 
}

.label-name{
	width: 140rpx;
	height: 40rpx;
	color: #fff;
	
	padding: 20rpx;
	background: pink;
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM