M
mazax
hi leute,
habe hier im forum ein sehr gutes script gefunden, um das Hintergrundbild onklick zu ändern. eines stört mich allerdings: der wechsel ist zu hart. ich will das die bilder onklick langsam erscheinen (effect.appear?!).
FRAGE: was muss ich ergänzen und wo füge ich das ein? (bin kein crack)
hier der ganze code:
.................................
<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">
<!--
function swapBackground(strImg) {
document.getElementById('body').style.backgroundImage = "url("+strImg+")";
}
//-->
</script>
<style type="text/css">
<!--
body{
background: url(bild0.jpg) 0 0 no-repeat;
}
//-->
</style>
</head>
<body id="body">
<a href="#" onmouseover="swapBackground('bild1.jpg');" onmouseout="swapBackground('bild0.jpg');">link 1</a>
<a href="#" onmouseover="swapBackground('bild2.jpg');" onmouseout="swapBackground('bild0.jpg');">link 2</a>
</body>
</html>
.................................
danke im voraus.
habe hier im forum ein sehr gutes script gefunden, um das Hintergrundbild onklick zu ändern. eines stört mich allerdings: der wechsel ist zu hart. ich will das die bilder onklick langsam erscheinen (effect.appear?!).
FRAGE: was muss ich ergänzen und wo füge ich das ein? (bin kein crack)
hier der ganze code:
.................................
<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">
<!--
function swapBackground(strImg) {
document.getElementById('body').style.backgroundImage = "url("+strImg+")";
}
//-->
</script>
<style type="text/css">
<!--
body{
background: url(bild0.jpg) 0 0 no-repeat;
}
//-->
</style>
</head>
<body id="body">
<a href="#" onmouseover="swapBackground('bild1.jpg');" onmouseout="swapBackground('bild0.jpg');">link 1</a>
<a href="#" onmouseover="swapBackground('bild2.jpg');" onmouseout="swapBackground('bild0.jpg');">link 2</a>
</body>
</html>
.................................
danke im voraus.