Automatic page hopping
Similar to PPT automatic jump effect, in addition to the timer can be achieved, there is a simpler meta method
Content The first value indicates the time, in seconds, and the second value url indicates the page to jump to
<meta http-equiv="refresh" content="3; url=page2.html" />
Copy the code
A page refresh
The page refreshes automatically at regular intervals, such as kanban data monitoring
Content indicates the refresh interval, in seconds
<meta http-equiv="refresh" content="3" />
Copy the code
Camouflage app
When enabled in full screen mode, use Apple-mobile-web-app-capable to hide the status bar toolbar of a web page, making it look like an app. The default value is no, showing the status.
Apple-mobile-web-app-bar-style Specifies the head color. The optional value is default, black, or black-always
Apple-mobile-web-app-titles sets main screen titles
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="hi">
Copy the code
First add the web page to the main screen, where HI is not set and Document is set, as shown in the following figure after opening.
The second one, with its head and tail hidden, does look like app.
App banner
Apple-itunes-app can add app advertisement bar intelligently, as shown in the picture below
<meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL">
Copy the code