我正在开发ReactJS应用程序。
我想在添加书签时显示图标,如下图所示,例如使用google。
我在index.html中尝试了以下代码,但仍然无法正常工作。 (如果我添加到主屏幕但不能在添加到书签中使用,则可以显示该图标)
<head>
<title>Testing Web</title>
<meta name="viewport" http-equiv="X-UA-Compatible" content="IE=edge,chrome=1, width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" charset="utf-8">
<meta name="format-detection" content="telephone=no,email=no,address=no">
<link rel="shortcut icon" href="favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="apple-touch-icon" href="cIcon.png">
<link rel="apple-touch-startup-image" href="cIcon.png">
<meta name="apple-mobile-web-app-title" content="Test Web">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" href="cIcon.png">
有人可以帮忙吗?
谢谢?