1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| // manifest.json "plus": { "launchwebview": { "bottom": "0px", <!-- 底部选项卡背景颜色 --> "background": "#fff", "subNViews": [ { "id": "tabBar", "styles": { "bottom": "0px", "left": "0", "height": "50px", "width": "100%", "backgroundColor": "#fff" }, "tags": [ { "tag": "font", "id": "indexIcon", <!-- text放图标,图标可在官网查,然后再mui.css中查找对应的字符,替换掉\u后的字符 --> "text": "\ue500", "position": { "top": "4px", "left": "0", <!-- 25%是四个选项卡 --> "width": "25%", "height": "24px" }, "textStyles": { "fontSrc": "_www/fonts/mui.ttf", "align": "center", "size": "24px" }, { "tag": "font", "id": "indexText", "text": "首页", "position": { "top": "23px", "left": "0", "width": "25%", "height": "24px" }, "textStyles": { "align": "center", "size": "10px" } },
|