文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

【UniApp开发小程序】顶部导航栏和底部导航栏设置+iconfont图标引入

2023-08-16 15:04

关注

顶部导航栏和底部导航栏设置

在正式开发小程序的功能之前,首先需要确定小程序的主要框架。

创建几个需要底部导航栏切换的页面

我的小程序需要创建的页面是“首页”、“我想要”、“私信”、“我的”,“首页”已经存在于项目中,不需要重复创建。创建过程如下:

在这里插入图片描述
在这里插入图片描述
创建成功,不仅创建了star.vueHbuilder还自动帮助创建了star文件夹

在这里插入图片描述
除此之外,还帮助我们在pages.json文件中进行了配置

在这里插入图片描述
同理,继续创建其他文件

在这里插入图片描述

使用阿里巴巴矢量图标库

官网:阿里巴巴矢量图标库

首先注册账号并登录,然后点击我的项目
在这里插入图片描述
创建一个新项目

在这里插入图片描述
在这里插入图片描述
搜索图标添加到项目中

在这里插入图片描述
将想要的图标添加到购物车中

在这里插入图片描述
查看购物车

在这里插入图片描述
将购物车的图标添加到项目中

在这里插入图片描述
下载项目的图标到本地

在这里插入图片描述
将下载的文件解压之后,把里面的.ttf文件拿出来

在这里插入图片描述
将ttf文件存储到项目的静态资源目录下面

在这里插入图片描述
在这里插入图片描述
在项目中使用

在这里插入图片描述

"tabBar": {"iconfontSrc": "static/icon/iconfont.ttf","color": "#333","selectedColor": "#2b92ff","list": [{"text": "首页","pagePath": "pages/index/index","iconfont": {"text": "\ue67e","selectedText": "\ue67e"}},{"text": "我想要","pagePath": "pages/star/star"},{"text": "消息","pagePath": "pages/message/message"},{"text": "我的","pagePath": "pages/my/my"}]}

运行到浏览器中,查看网页效果,图标正常

在这里插入图片描述
运行到小程序中,查看效果,非常伤心,并不能正常使用

在这里插入图片描述
虽然在tabBar中无法使用iconfont,但是在页面的其他地方还是可以使用的,请继续后面的操作

在这里插入图片描述
将复制的在线代码替换掉原有的代码,下图是替换前

在这里插入图片描述
下图是替换后

在这里插入图片描述之后,在每个链接前面添加上https

在这里插入图片描述
最后在App.vue文件中引入iconfont.css

在这里插入图片描述
到这里已经大功告成了,可以使用了,想要使用哪个图标,先去复制图标的unicode,如下图

在这里插入图片描述
在页面中使用

在这里插入图片描述
显示成功

在这里插入图片描述

完成底部导航栏tabBar

非常遗憾,上面引入的iconfont没办法再tabBar中使用,只能先把图标下载下来,然后再引入了

在这里插入图片描述
在这里插入图片描述
将下载的图标文件放入到项目的静态文件下面

在这里插入图片描述
使用图标

在这里插入图片描述

"tabBar": {"color": "#333","selectedColor": "#2b92ff","list": [{"text": "首页","pagePath": "pages/index/index","iconPath": "static/icon/tabBar/首页.png","selectedIconPath": "static/icon/tabBar/首页.png"},{"text": "我想要","pagePath": "pages/star/star","iconPath": "static/icon/tabBar/收藏.png","selectedIconPath": "static/icon/tabBar/收藏.png"},{"text": "消息","pagePath": "pages/message/message","iconPath": "static/icon/tabBar/消息.png","selectedIconPath": "static/icon/tabBar/消息.png"},{"text": "我的","pagePath": "pages/my/my","iconPath": "static/icon/tabBar/我的.png","selectedIconPath": "static/icon/tabBar/我的.png"}]}

我这边为了偷懒,未选中和选中状态都使用相同的图标,你们可以使用不同的图标。

在这里插入图片描述

设置页面顶部导航栏标题

在这里插入图片描述

样式优化

{"easycom": {"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"},"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages{"path": "pages/index/index","style": {"navigationBarTitleText": "首页","enablePullDownRefresh": true,// 设置背景颜色"navigationBarBackgroundColor": "#2b92ff",// 设置标题的颜色"navigationBarTextStyle": "white"}}, {"path": "pages/star/star","style": {"navigationBarTitleText": "我想要","enablePullDownRefresh": true,"navigationBarBackgroundColor": "#2b92ff","navigationBarTextStyle": "white"}}, {"path": "pages/my/my","style": {"navigationBarTitleText": "我的","enablePullDownRefresh": true,"navigationBarBackgroundColor": "#2b92ff","navigationBarTextStyle": "white"}}, {"path": "pages/message/message","style": {"navigationBarTitleText": "消息","enablePullDownRefresh": true,"navigationBarBackgroundColor": "#2b92ff","navigationBarTextStyle": "white"}}],"globalStyle": {"navigationBarTextStyle": "black","navigationBarTitleText": "uni-app","navigationBarBackgroundColor": "#F8F8F8","backgroundColor": "#F8F8F8"},"uniIdRouter": {},"tabBar": {"color": "#292929","selectedColor": "#2b92ff","backgroundColor": "#ffffff","list": [{"text": "首页","pagePath": "pages/index/index","iconPath": "static/icon/tabBar/首页.png","selectedIconPath": "static/icon/tabBar/首页 (1).png"}, {"text": "我想要","pagePath": "pages/star/star","iconPath": "static/icon/tabBar/收藏.png","selectedIconPath": "static/icon/tabBar/收藏 (1).png"}, {"text": "消息","pagePath": "pages/message/message","iconPath": "static/icon/tabBar/消息.png","selectedIconPath": "static/icon/tabBar/消息 (1).png"}, {"text": "我的","pagePath": "pages/my/my","iconPath": "static/icon/tabBar/我的.png","selectedIconPath": "static/icon/tabBar/我的 (1).png"}]}}

在这里插入图片描述

来源地址:https://blog.csdn.net/laodanqiu/article/details/131712021

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯