S
streetskater
Guest
ist es möglich einen doppelten mouseover zu machen d.h.
-ein bild mouseover - 2.bild
-2.bild mouseover - 3.bild
-ein bild mouseover - 2.bild
-2.bild mouseover - 3.bild
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.
[img]bild.gif[/img]'
<style>
a:hover { background-image:url(http://wau7.funpic.de/bilderupload/upload/mrcoolscreeni.JPG); }
img.test:hover { background-image:url(http://wau7.funpic.de/bilderupload/upload/mrcoolscreeni.JPG); }
</style>
[url="#"][img]http://www.html.de/templates/subSilver/images/logo_phpBB.gif[/img][/url]
<html>
<head>
<script type="text/javascript">
var i = 0;
function wechsel (){
var bild = new Image();
bild.src = "drittes_bild.jpg";
var bild2 = new Image();
bild2.src = "zweites_bild.jpg";
if (i >= 1){
document.getElementById('bild1').src=bild.src;
} else {
document.getElementById('bild1').src=bild2.src;
}
}
function addieren (){
i +=1;
}
</script>
</head>
<body>
[img]erstes_bild.jpg[/img]
</body>
</html>