其他分享
首页 > 其他分享> > uniapp之H5网站添加图标favicon浏览器标签栏小图标

uniapp之H5网站添加图标favicon浏览器标签栏小图标

作者:互联网

、、、、、、、、、、、仅对以前所学做复习记录使用、、、、、、、、、

favicon图标可以是PNG、JPG、ico格式的,大部分网站兼容ico格式的。图标大小一般是:16x16 32x32

在这里插入图片描述

一、先新建一个HTML文件,名字随意起,例如templateH5.html。

进入官网,复制官网的基本模板所有内容到templateH5.html:https://uniapp.dcloud.io/collocation/manifest?id=h5-template
在这里插入图片描述

二、在uniapp中找到manifest.json------h5配置-----模板路径;将建好的templateH5.html浏览路径连接上(一定要浏览具体路径)。

在这里插入图片描述

三、在templateH5.html中的head标签下,写入以下:

<link rel="icon" href="./static/image/fenlei.png" />
//  rel是icon; href是你需要的图标的路径;只要是在head标签下就行。

四、一定要重写启动uniapp,才显示

在这里插入图片描述

标签:uniapp,templateH5,路径,H5,html,标签,favicon,图标
来源: https://blog.csdn.net/qq_31676483/article/details/122476015