• 29.08.2025, 07:35
  • Register
  • Login
  • You are not logged in.

 

JOJBer

Full Member

javascript Problem

Sunday, August 19th 2007, 9:11pm

Ich blende mittels javascript ein kleines Div ein. Dies funktioniert auf wie es soll. Jetzt hätte ich gerne das es aber nicht einfach nur auftaucht sondern das es etwas "smooth" abläuft.
habe dafür die folgende Funktion geschrieben:

Source code

1
2
3
4
5
6
7
8
function smooth(elem){
                    var crossobj2 = document.getElementById(elem);
                    //crossobj2.style.filter = crossobj2.style.filter + 10;
                    crossobj2.style.-moz-opacity = crossobj2.style.-moz-opacity + 0.01;
                    if (crossobj2.style.filter <= 80) {
                        setTimeout("smooth('div1')", 250);
                    }
                  }

Aufrufen tue ich das ganze mittels "smooth('div1');" direkt im Div.
Daraufhin wird einfach nichts mehr ausgeführt was mit js zu tun hat.
Hat jemand ne idee

Y0Gi

God

Re: javascript Problem

Sunday, August 19th 2007, 10:03pm

Ich empfehle dir da die Verwendung von jQuery:

Source code

1
2
3
$(function() {
  $('#div1').hide().show('slow');
});