Samuel
Erfahrenes Mitglied
Ich würde gerne ein Menü machen das wenn ich mit der Maus über ein Link fahre das dann ein div aufgeht und das dann langsam größer wird.
ich hab gedacht das koennte so gehn:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script language="JavaScript">
function startAnimation(DivName) {
var ref;
if (x) {
if (document.all) {
document.all[DivName].style.visibility='visible';
document.all[DivName].style.height=x;
} else if ((!document.all) && (document.getElementById)) {
ref=document.getElementBy(DivName);
ref.style.visibility='visible';
ref.style.height=x;
} else if (document.layers) {
document.layers[DivName].style.visibility='show';
document.layers[DivName].style.height=x;
}
if (x<200) { x++; }
} else { var x=0; }
timer=setTimeout(startAnimation(DivName), 100);
}
</script>
</head>
<body>
<a href="#" onmouseover="startAnimation('blub')">blub</a>
<div id="blub" style="position:absolute; left:100px; top:100px; width=100px; background-color:#CCCCCC; visibility:hidden;">
bla<br>und<br>blub
</div>
</body>
</html>
Hier bringt er mir dann immer so ein behinderte message
Stack overflow at line 22
brauch hilfe :]
thX im Voraus
ich hab gedacht das koennte so gehn:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script language="JavaScript">
function startAnimation(DivName) {
var ref;
if (x) {
if (document.all) {
document.all[DivName].style.visibility='visible';
document.all[DivName].style.height=x;
} else if ((!document.all) && (document.getElementById)) {
ref=document.getElementBy(DivName);
ref.style.visibility='visible';
ref.style.height=x;
} else if (document.layers) {
document.layers[DivName].style.visibility='show';
document.layers[DivName].style.height=x;
}
if (x<200) { x++; }
} else { var x=0; }
timer=setTimeout(startAnimation(DivName), 100);
}
</script>
</head>
<body>
<a href="#" onmouseover="startAnimation('blub')">blub</a>
<div id="blub" style="position:absolute; left:100px; top:100px; width=100px; background-color:#CCCCCC; visibility:hidden;">
bla<br>und<br>blub
</div>
</body>
</html>
Hier bringt er mir dann immer so ein behinderte message
Stack overflow at line 22
brauch hilfe :]
thX im Voraus