This post has been edited 1 times, last edit by "WW_Asmodean" (Nov 29th 2006, 1:46pm)
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<html> <head> <title>Bla</title> <script language="javascript"> // <!-- var start = 1; var speed = 1; function down() { runter = setInterval("parent.frames.mitte.scroll(0,start+=speed)",10); } // --> </script> </head> <body onLoad="down()"> <!-- Tabelleundlala --> <iframe name="mitte" height="200" width="600" src="bla.html"></iframe> </body> </html> |
This post has been edited 1 times, last edit by "XaoMat" (Nov 29th 2006, 10:39pm)
This post has been edited 2 times, last edit by "WW_Asmodean" (Apr 17th 2007, 12:24pm)
This post has been edited 1 times, last edit by "Imp_Goten" (Apr 17th 2007, 1:46pm)
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Blub</title> <script language="javascript"> // <!-- function rnd(i) { return Math.round(Math.random()*i); } function zeige() { var ids=new Array("stern","kreis","viereck"); var maxbreite = 600; var maxhoehe = 600; var r = rnd(2); style="visibility:visible; position:fixed; left:"+rnd(maxbreite)+"px; top:"+rnd(maxhoehe)+"px;"; document.getElementById(ids[r]).setAttribute("style",style); window.setTimeout("verstecke('"+ids[r]+"')",1000); } function verstecke(a) { document.getElementById(a).setAttribute("style","visibility:hidden;"); window.setTimeout("zeige()",500+rnd(1000)); } // --> </script> </head> <body onload="window.setTimeout('zeige()',1000)"> <img id="stern" style="visibility:hidden;" src="http://kpp.aksios.de/bilder/stern1.gif" width="100" /> <img id="kreis" style="visibility:hidden; position:fixed;" src="http://www.blaues-kreuz-saarland.de/grundlagen/fbl-kreis.jpg" width="100" /> <img id="viereck" style="visibility:hidden; position:fixed;" src="http://www.suhe-motorsport.de/Bilder/Viereck.gif" width="100" /> </body> </html> |
This post has been edited 2 times, last edit by "WW_Asmodean" (Apr 18th 2007, 9:15am)
This post has been edited 2 times, last edit by "WW_Asmodean" (May 4th 2007, 1:52pm)