Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<title></title>
</head>
<body>
<script>
$(document).ready(function() {
$("#submit").hover(function() {
$('#imag').css("opacity", "1");
}, function() {
$('#imag').css("opacity", "0");
});
});
</script>
<input type="submit" id="submit">
<img id="imag" src="http://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/zsnes.png" style="opacity: 0;" />
</body>
</html>