Sanduhr ( java Script)
-
ich will dass solange eine aktion auf die Seite augeführt eine Sanduhr anzeigen
cursour:waitwie ist es zu realisieren ??
danke im voraus
-
das geht so:
<body> <script> setInterval('document.body.style.cursor="wait"', 1000); setInterval('document.body.style.cursor="default"', 1500); //document.body.style.cursor='wait'; //document.body.style.cursor='default'; </script> </body>
schau dir die seite mal an, sieht lustig aus *g*
-
wo ist die Fehöer si passiert nicht ich sehekene Sanduhr ?????????????
beim klicken wir die Funktion goAction auferufen
function sortArray(index)
{
bottom_Document.body.style.cursor="wait";
.............. mehrere Aktionenwindow.cleanInterval(aktiv);
}
//------------------------------------------------------------------------------function goAction(index)
{
aktiv = window.setInterval("sortArray("+index+")",5000);
}
//-----------------------------------------danke
-
[java]
function sortArray(index)
{
bottom_Document.body.style.cursor="wait";
//was ist bottom_Document ????
//.............. mehrere Aktionenwindow.cleanInterval(aktiv);
// Fehler??
// das heißt clearInterval
}
//------------------------------------------------------------------------------
function goAction(index)
{
aktiv = window.setInterval("sortArray("+index+")",5000);
}
//-----------------------------------------[/code]ich habe mal versucht deine funktionen umzuschreiben:
[java]
function sortArray(index)
{
document.body.style.cursor="wait";
//.............. mehrere Aktionenwindow.clearInterval(aktiv);
//gleich nach dem clearinterval:
document.body.style.cursor="default";
// oder versuch mal "standard"
}function goAction(index)
{
aktiv = window.setInterval("sortArray("+index+")",5000);
}[/code][ Dieser Beitrag wurde am 24.09.2002 um 17:33 Uhr von Netspider editiert. ]