Blogger Information
Blog 6
fans 0
comment 0
visits 8849
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
uniapp写滚动导航栏时隐藏滚动条和组件样式。
过夜茶
Original
1373 people have browsed it
::-webkit-scrollbar {  
    display: none;  
    width: 0 !important;  
    height: 0 !important;  
    -webkit-appearance: none;  
    background: transparent;  
}
	<scroll-view scroll-x 		
		 style="width: 100%;white-space: nowrap;">
			<view v-for="(item,index) in tabBars" class="px-3 py-2 font-md"
			 :key="index" 
			 :id="'tab'+index"
			 :class="tabIndex===index?'text-main font-lg font-weight-bold':''"
			 @tap="changeTab(index)"
			 
			 style="display: inline-block!important">{{item.name}}</view>
		</scroll-view>

导航栏外部样式宽度100%,不自动换行。选项卡样式为inline-block    并设为优先 !important 

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post