Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<a onmouseover="javascript:blendimage('blenddiv','blendimage', 'jsfade_img/a.jpg',200)">Image 1</a>
<a onmouseover="javascript:blendimage('blenddiv','blendimage', 'jsfade_img/b.jpg',200)">Image 2</a>
<a onmouseover="javascript:blendimage('blenddiv','blendimage', 'jsfade_img/c.jpg',200)">Image 3</a>
<div style="background-image: url(jsfade_img/a.jpg); background-repeat: no-repeat; width: 400px; height: 150px;" id="blenddiv">
<img src="a.jpg" style="width: 200px; height: 150px; border: 0 none; filter: alpha(opacity=0); -moz-opacity: 0; opacity: 0;" id="blendimage" alt="" />
<html>
<head>
<title>www.tutorials.de</title>
<meta name="author" content="Quaese">
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
<!--
var arrImg = [["bild1.jpg", "Bild 1"],
["bild2.jpg", "Bild 2"],
["bild3.jpg", "Bild 3"]];
var intLastImg = null;
var hTimer = hTimer2 = null;
//change the opacity for different browsers
function changeOpac(opacity, id) {
if(opacity <= 100){
var object = document.getElementById(id).style;
object.opacity = (opacity / 100);
object.MozOpacity = (opacity / 100);
object.KhtmlOpacity = (opacity / 100);
object.filter = "alpha(opacity=" + opacity + ")";
opacity+=2;
hTimer = setTimeout("changeOpac(" + opacity + ",'" + id + "')", 5);
}else if(document.getElementById("cbAuto").checked){
// Bildindex im gültigen Bereich halten
intLastImg = (++intLastImg < arrImg.length)? intLastImg : 0;
// Fade-Initialisierung-Funktion zeitversetzt erneut starten
hTimer2 = setTimeout(function(){ blendimage('blenddiv','blendimage', intLastImg, 200)}, 5000);
}
}
function blendimage(divid, imageid, intImg, millisec){
// Falls bereits ein manuell ausgelöster Timer läuft -> stoppen und resetten
if(hTimer != null) resetTimer(hTimer);
// Falls bereits ein automatischer Timer läuft -> stoppen und resetten
if(hTimer2 != null) resetTimer(hTimer2);
speed = Math.round(millisec / 100);
var timer = 0;
// set the current image as background
document.getElementById(divid).style.backgroundImage = "url(" + document.getElementById(imageid).src + ")";
//make new image
document.getElementById(imageid).src = arrImg[intImg][0];
document.getElementById(divid).getElementsByTagName("p")[0].innerHTML = arrImg[intImg][1];
intLastImg = intImg;
//make image transparent
changeOpac(0, divid);
}
function resetTimer(hT){
clearTimeout(hT);
hT = null;
}
//-->
</script>
</head>
<body>
<p><input type="checkbox" id="cbAuto" value="">automatisch</p>
<a href="#" onmouseover="blendimage('blenddiv','blendimage', 0, 200);">Image 1</a>
<a href="#" onmouseover="blendimage('blenddiv','blendimage', 1, 200);">Image 2</a>
<a href="#" onmouseover="blendimage('blenddiv','blendimage', 2, 200);">Image 3</a>
<div style="background-image: url(jsfade_img/a.jpg); background-repeat: no-repeat; width: 400px; height: 150px; filter: alpha(opacity=0); -moz-opacity: 0; opacity: 0;" id="blenddiv">
<img src="bild1.jpg" style="width: 200px; height: 150px; border: 0 none;" id="blendimage" alt="" />
<p>Info 1</p>
</div>
</body>
</html>
onmouseover="window.blendimage_('blenddiv','blendimage', 0, 200);"