1# tabs开发指导 2 3tabs是一种常见的界面导航结构。通过页签容器,用户可以快捷地访问应用的不同模块。具体用法请参考[tabs API](../reference/arkui-js/js-components-container-tabs.md)。 4 5 6## 创建tabs 7 8在pages/index目录下的hml文件中创建一个tabs组件。 9 10```html 11<!-- xxx.hml --> 12<div class="container"> 13 <tabs> 14 <tab-bar> 15 <text>item1</text> 16 <text>item2</text> 17 </tab-bar> 18 <tab-content class="tabContent"> 19 <div class="text"> 20 <text>content1</text> 21 </div> 22 <div class="text"> 23 <text>content2</text> 24 </div> 25 </tab-content> 26 </tabs> 27</div> 28``` 29 30```css 31/* xxx.css */ 32.container { 33 flex-direction: column; 34 justify-content: center; 35 align-items: center; 36 background-color: #F1F3F5; 37} 38.tabContent{ 39 width: 100%; 40 height: 100%; 41} 42.text{ 43 width: 100%; 44 height: 100%; 45 justify-content: center; 46 align-items: center; 47} 48``` 49 50 51 52 53## 设置样式 54 55设置tabs背景色及边框和tab-content布局。 56```html 57<!-- xxx.hml --> 58<div class="container"> 59 <tabs class="tabs"> 60 <tab-bar class="tabBar"> 61 <text class="tabBarItem">item1</text> 62 <text class="tabBarItem">item2</text> 63 </tab-bar> 64 <tab-content class="tabContent"> 65 <div class="tabContent"> 66 <text>content1</text> 67 </div> 68 <div class="tabContent" > 69 <text>content2</text> 70 </div> 71 </tab-content> 72 </tabs> 73</div> 74``` 75 76```css 77/* xxx.css */ 78.container { 79 flex-direction: column; 80 justify-content: flex-start; 81 align-items: center; 82 background-color:#F1F3F5; 83} 84.tabs{ 85 margin-top: 20px; 86 border: 1px solid #2262ef; 87 width: 99%; 88 padding: 10px; 89} 90.tabBar{ 91 width: 100%; 92 border: 1px solid #78abec; 93} 94.tabContent{ 95 width: 100%; 96 margin-top: 10px; 97 height: 300px; 98 color: blue; 99 justify-content: center; 100 align-items: center; 101} 102``` 103 104 105 106 107## 显示页签索引 108 109开发者可以为tabs添加change事件,实现页签切换后显示当前页签索引的功能。 110 111```html 112<!-- xxx.hml --> 113<div class="container" style="background-color:#F1F3F5;"> 114 <tabs class="tabs" onchange="tabChange"> 115 <tab-bar class="tabBar"> 116 <text class="tabBarItem">item1</text> 117 <text class="tabBarItem">item2</text> 118 </tab-bar> 119 <tab-content class="tabContent"> 120 <div> 121 <image src="common/images/bg-tv.jpg" style="object-fit: contain;"> </image> 122 </div> 123 <div> 124 <image src="common/images/img1.jpg" style="object-fit: contain;"> </image> 125 </div> 126 </tab-content> 127 </tabs> 128</div> 129``` 130 131```js 132// xxx.js 133import promptAction from '@ohos.promptAction'; 134export default { 135 tabChange(e){ 136 promptAction.showToast({ 137 message: "Tab index: " + e.index 138 }) 139 } 140} 141``` 142 143 144 145 146> **说明:** 147> 148> tabs子组件仅支持一个[\<tab-bar>](../reference/arkui-js/js-components-container-tab-bar.md)和一个[\<tab-content>](../reference/arkui-js/js-components-container-tab-content.md)。 149 150 151## 场景示例 152 153在本场景中,开发者可以点击标签切换内容,选中后标签文字颜色变红,并显示下划线。 154 155用tabs、tab-bar和tab-content实现点击切换功能,再定义数组,设置属性。使用change事件改变数组内的属性值实现变色及下划线的显示。 156 157```html 158<!-- xxx.hml --> 159<div class="container"> 160 <tabs onchange="changeTabactive"> 161 <tab-content> 162 <div class="item-container" for="datas.list"> 163 <div if="{{$item.title=='List1'?true:false}}"> 164 <image src="common/images/bg-tv.jpg" style="object-fit: contain;"> </image> 165 </div> 166 <div if="{{$item.title=='List2'?true:false}}"> 167 <image src="common/images/img1.jpg" style="object-fit: none;"> </image> 168 </div> 169 <div if="{{$item.title=='List3'?true:false}}"> 170 <image src="common/images/img2.jpg" style="object-fit: contain;"> </image> 171 </div> 172 </div> 173 </tab-content> 174 <tab-bar class="tab_bar mytabs" mode="scrollable"> 175 <div class="tab_item" for="datas.list"> 176 <text style="color: {{$item.color}};">{{$item.title}}</text> 177 <div class="underline-show" if="{{$item.show}}"></div> 178 <div class="underline-hide" if="{{!$item.show}}"></div> 179 </div> 180 </tab-bar> 181 </tabs> 182</div> 183``` 184 185```css 186/* xxx.css */ 187.container{ 188width: 100%; 189height: 100%; 190background-color:#F1F3F5; 191} 192.tab_bar { 193 width: 100%; 194 height: 150px; 195} 196.tab_item { 197 height: 30%; 198 flex-direction: column; 199 align-items: center; 200} 201.tab_item text { 202 font-size: 32px; 203} 204.item-container { 205 justify-content: center; 206 flex-direction: column; 207} 208.underline-show { 209 height: 2px; 210 width: 160px; 211 background-color: #FF4500; 212 margin-top: 7.5px; 213} 214.underline-hide { 215 height: 2px; 216 margin-top: 7.5px; 217 width: 160px; 218} 219``` 220 221```js 222// xxx.js 223import promptAction from '@ohos.promptAction'; 224export default { 225 data() { 226 return { 227 datas: { 228 color_normal: '#878787', 229 color_active: '#ff4500', 230 show: true, 231 list: [{ 232 i: 0, 233 color: '#ff4500', 234 show: true, 235 title: 'List1' 236 }, { 237 i: 1, 238 color: '#878787', 239 show: false, 240 title: 'List2' 241 }, { 242 i: 2, 243 color: '#878787', 244 show: false, 245 title: 'List3' 246 }] 247 } 248 } 249 }, 250 changeTabactive (e) { 251 for (let i = 0; i < this.datas.list.length; i++) { 252 let element = this.datas.list[i]; 253 element.show = false; 254 element.color = this.datas.color_normal; 255 if (i === e.index) { 256 element.show = true; 257 element.color = this.datas.color_active; 258 } 259 } 260 } 261} 262``` 263 264 265 266 267## 相关实例 268 269针对tabs开发,有以下相关实例可供参考: 270 271- [`JsComponentCollection`:JS组件集合(JS)(API9)](https://gitee.com/openharmony/applications_app_samples/tree/OpenHarmony-4.0-Release/code/UI/JsComponentCollection/JsComponentCollection)