Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<html>
<head>
<title>...</title>
<script type="text/javascript">
function overEffekt()
{
//Hier machste dein Over effekt hin was weiß ich beispielsweise Farbe
//aendern:
document.getElementById("test").style.color='red';
}
</script>
</head>
<body>
<!-- CODE CODE CODE -->
<!-- Verzoegerung von 3 Sekunden -->
<div id="test" onmouseover="setTimeOut('overEffekt()', 3000);" onmouseour="irgendwas anderes">
<!-- CODE CODE CODE -->
</body>
</html>
<html>
<head>
<title>...</title>
<script type="text/javascript>
function over()
{
document.getElementById("austausch1").src='bild_over.jpg';
}
function out()
{
document.getElementById("austausch1").src='bild_out.jpg';
}
</script>
</head>
<body>
<!-- CODE CODE CODE-->
<!-- mousout effekt [B]keine[/B] verzoegerung. -->
<!-- mouseover effelt [B]mit[/B] verzoegerung 3 sek -->
<a [B]id="link"[/B] href="" target="center" onmouseout="out();" onmouseover="setTimeOut('over()', 3000);">
<!-- CODE CODE CODE-->
</body>
</html>
<html>
<head>
<title>...</title>
<script type="text/javascript">
function overeffekt()
{
document.getElementById("austausch1").src='over_effekt.jpg'
}
function outeffekt()
{
document.getElementById("austausch1").src='out_effekt.jpg';
}
</script>
</head>
<body>
<!-- CODE CODE CODE-->
<!-- mousout effekt keine verzoegerung. -->
<!-- mouseover effelt mit verzoegerung 3 sek -->
<a href="" target="center" onmouseout="outeffekt();" onmouseover="setTimeout('overeffekt()', 3000);">lalalala</a>
<!-- CODE CODE CODE-->
</body>
</html>
<html>
<head>
<title>...</title>
<script type="text/javascript">
function overeffekt()
{
document.getElementById("link").style.color='red';
}
function outeffekt()
{
document.getElementById("link").style.color='blue';
}
</script>
</head>
<body>
<!-- CODE CODE CODE-->
<!-- mousout effekt keine verzoegerung. -->
<!-- mouseover effelt mit verzoegerung 3 sek -->
<a id="link" href="" target="center" onmouseout="outeffekt();" onmouseover="setTimeout('overeffekt()', 500);">lalalala</a>
<!-- CODE CODE CODE-->
</body>
</html>
<!--
button1_a= new Image();
button1_a.src = "bild_out.png"
button1_b= new Image();
button1_b.src = "bild_over.png"
//-->
<a href="html.html" target="center" onmouseout="austausch1.src='bild_out.png'" onmouseover="austausch1.src='bild_over.png';"><img src="ibild_out.png"border="0" width="120" height="22"name="austausch1">
<html>
<head>
<title>...</title>
<script type="text/javascript">
function overeffekt()
{
document.getElementByName("austausch1").src='bild_over.png';
}
function outeffekt()
{
document.getElementByName("austausch1").src='bild_out.png';
}
</script>
</head>
<body>
<!-- Effekt von 1,5 Sekunden Verzoegerung -->
<a href="html.html" target="center" onmouseout="outeffekt();" onmouseover="setTimeout('overeffekt()', 1500);"><img src="ibild_out.png" border="0" width="120" height="22" name="austausch1"></a>
</body>
</html>