Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

HTML5 Custom Homescreen Icon + Mobile Web App

  • 2 ответа
  • 9 имеют эту проблему
  • 46 просмотров
  • Последний ответ от mwpclark

more options

I've been learning HTML5 Game Development, and have a question about Firefox for Android: How would I get a custom icon for a bookmark added to the home screen? It looks like Firefox either uses a favicon, or a default star.

On iOS Safari, I was able to accomplish this using <link rel="apple-touch-icon" href="image.png" />, and the functionality seems to carry over to Google Chrome.

I tried using this code for a custom favicon on a specific page: <link rel='shortcut icon' type='image/x-icon' href='favicon.ico' /> but it only works when I view the file directly on the computer. When accessing the page through Apache, there is no favicon.

My other question was about Mobile Web App functionality. In iOS Safari and Google Chrome for Android, adding "apple-mobile-web-app-capable" or "mobile-web-app-capable" lets the webpage run as a fullscreen web app when saved to the homescreen. Firefox just opens it like a normal bookmark.

Any help is appreciated. I'm learning from the book 'HTML5 Game Development for Dummies.'

I've been learning HTML5 Game Development, and have a question about Firefox for Android: How would I get a custom icon for a bookmark added to the home screen? It looks like Firefox either uses a favicon, or a default star. On iOS Safari, I was able to accomplish this using <link rel="apple-touch-icon" href="image.png" />, and the functionality seems to carry over to Google Chrome. I tried using this code for a custom favicon on a specific page: <link rel='shortcut icon' type='image/x-icon' href='favicon.ico' /> but it only works when I view the file directly on the computer. When accessing the page through Apache, there is no favicon. My other question was about Mobile Web App functionality. In iOS Safari and Google Chrome for Android, adding "apple-mobile-web-app-capable" or "mobile-web-app-capable" lets the webpage run as a fullscreen web app when saved to the homescreen. Firefox just opens it like a normal bookmark. Any help is appreciated. I'm learning from the book 'HTML5 Game Development for Dummies.'

Выбранное решение

Since nobody responded to my question, I did some more thorough searching. If I insert this code:

<link rel="icon" href="/path/to/some.png" />

The bookmark has the specified icon. However, the result is disappointing because Firefox's bookmark icon appears very low-quality and blurry next to Chrome's bookmark icon.

Прочитайте этот ответ в контексте 👍 3

Все ответы (2)

more options

Выбранное решение

Since nobody responded to my question, I did some more thorough searching. If I insert this code:

<link rel="icon" href="/path/to/some.png" />

The bookmark has the specified icon. However, the result is disappointing because Firefox's bookmark icon appears very low-quality and blurry next to Chrome's bookmark icon.

more options

Hey Super, same problem here. I have cleaned up the graphic and created several sizes of png files with transparent background. Chrome bookmark added to home screen displays transparency, but firefox adds a pink square background. You can view at coconutisland.com. Grateful for any answers. Mike