Adding a web application to the home screen

I have a web application located at: www.xclo.mobi

I notice that when viewing other iOS web applications, they have an image pointing to the browser menu in which people are told to install their web application there on their device, which appears as soon as the user views this page.

The image usually says: “Install this web application on your device: click on the arrow and then “ Add to the home screen "

EXAMPLE IMAGE

Can someone please advise me how to add this? What codes will I need to add to my iOS homepages to get this?

Many thanks for your help.

+5
1

, , . , , , , , , , , , " ".

add2home http://cubiq.org/add-to-homescreen-goes-3

: https://github.com/cubiq/add-to-homescreen

<head>
<title>Add To Home</title>
...
<link rel="stylesheet" type="text/css" href="../../style/addtohomescreen.css">
<script src="../../src/addtohomescreen.js"></script>
<script>
addToHomescreen();
</script>
</head>

script Cubiq

, add2home.js add2home.css , ipad.html, <head>, :

<head> 
<link rel="stylesheet" href="add2home.css"> 
<script type="application/javascript" src="add2home.js"></script> 
</head>
+3

All Articles