Jump to content
  • 0

Нужен скрипт. Очень! F1!


SibBear
 Share

Question

Большая просьба! Дайте скрипт, т.к. в JS не то что не силен, а вообще не понимаю...

Задача:

Есть несколько DIV'ов на странице. Количество N

После полной загрузки страницы в случайном порядке включается функция (готовая) для выбранного дива, затем для негоже вторая, затем случайно выбирается другой див и все в том же порядке, и т.д.

Т.е. мне нужно чтото подобное

i=random(N)

do hide(i)

пауза

do unhide(i)

пауза

все по новой...

функции hide unhide готовы.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Дошел до следующего:

num = Math.floor(Math.random()*N);
setTimeout("hide('num')", 1000);
setTimeout("unhide('num')", 1000);

Как это все запихнуть в бесконечный цикл?

И при этом всем, сайт не должен висеть во время выполнения этого цикла...

т.е. на меню можно нажимать и т.п.

Link to comment
Share on other sites

  • 0

Ну да, если гора не идет к Магомеду...

<script type="text/javascript">
var num;
var t;
var speed=500;
var N=20;

function disco()
{ num='Id'+Math.floor(Math.random()*N);
hide(num);
setTimeout("unhide(num)", speed);
t=setTimeout("disco()",speed);
}

function discostop()
{
clearTimeout(t);
}

</script>

</head>

<body onload="disco()">

Спасибо www.w3schools.com и учительнице английского...

Link to comment
Share on other sites

  • 0

просто когда есть элементарные навыки программирования со школы, а так это полный завал - не зная языка писать скрипты...

вопрос то впринципе был какие операторы использовать, а алгоритм простейший..

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy