Загрузчик ссылки
01.06.2009, 23:07 | |||
Когда вы наведите курсор мыши на ссылку на загруз-бар увеличивается и
после того, как бар заполнится, ссылка становится активной. Нажатие кнопки
приводит к открытию окна с сообщением. ------------------------------------------------ Пример использования скрипта: Код скрипта: Шаг первый: Вставьте этот код в тег HEAD Вашего HTML документа <HEAD> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://rabotnichek.my1.ru --> <script> var linkurl="http://rabotnichek.my1.ru"; // the target of the link var loadtime=4; // the time for the loading bar to fill (seconds) var clicktext="Пожалуйста, подождите немного!"; // text to be displayed in a message box when link is clicked prematurely var linkactive="Link is now active!" // message to be displayed below bar once the link becomes active; var automaticlink=0; // if you change this variable to 1 then when the loading bar fills you will be instantly directed to the target link // if you leave it as 0 then when the bar loads you will be then able to click the link and it will work as normal // do not edit below unless you know what you are doing! var doload=0;var doing=0;var loadsize=1; function cont() { if (doload==0 & loadsize>1) loadsize=loadsize- 1; if (doload==1 & loadsize<loadtime*20) loadsize=loadsize- -1; loader.width=Math.round(loadsize/(loadtime*20)*(loadarea.width-2-(loadarea.border*2))); if (loadsize>1 & loadsize<loadtime*20) {setTimeout('cont()', 0050); doing=1} else {doing=0} if (loadsize>=loadtime*20){activeshow.innerHTML=linkactive; if (automaticlink==1)checklink();}else{activeshow.innerHTML=""}} function loading() {doload=1;if (doing==0) cont();} function stopping() {doload=0;if (doing==0) cont();} function checklink(instantly){if (loadsize>=loadtime*20) {window.location.href=linkurl;doing=2} else alert(clicktext)} </script> </HEAD>
<BODY> <p align=center><a href="javascript:checklink()" onmouseover=loading() onmouseout=stopping()>http://rabotnichek.my1.ru/</a><table border="3" id="loadarea" cellspacing="0" width="122" cellpadding="0"><tr><td><table width="1" height="15" id="loader" bgcolor="#0000FF" border="0" cellspacing="0" cellpadding="0"><tr><td></td></tr></table></td></tr></table> <span id=activeshow></span> <p><center> <font face="arial, helvetica" size"-2">Free JavaScripts provided<br> by <a href="http://rabotnichek.my1.ru/">The JavaScript Source</a></font> </center><p> <!-- Script Size: 2.78 KB --> | |||
| |||
Просмотров: 460 | Загрузок: 0 | |
Всего комментариев: 0 | |