Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<title>Blinking image</title>
<Script language="javascript">
var o_interval
var delay=500 // define blink delay to 1/2 second
function makeBlink() {
o_interval = window.setInterval("ShowHide()", delay);
}
function stopBlink() {
window.clearInterval(o_interval);
}
function ShowHide() {
var o_img = document.getElementById("blinkImg");
if (o_img.style.visibility=="hidden")
o_img.style.visibility="visible"
else
o_img.style.visibility="hidden"
}
</Script>
</head>
<body>
<img id="blinkImg" src=".\1.gif" style="visibility : visible">
<input type="button" value="make blink" onclick="makeBlink();">
<input type="button" value="stop blink" onclick="stopBlink();">
</body>
</html>