Окно с ссылками ----------------------------------------------------------------- Пример использования
скрипта:
-----------------------------------------------------------------
Код
скрипта:
Вставьте следующий код между тегами
<BODY>
</BODY>
<form name="take" > <table border="0" cellspacing="0" cellpadding="0"> <tr> <td width="100%"><select name="take2" size="5" style="width:200px"> <option value="http://rabotnichek.my1.ru">Веб-мастеру</option> <option value="http://rabotnichek.my1.ru">Развлечения</option> <option selected value="http://rabotnichek.my1.ru">Icq mobile конструктор</option> <option value="http://rabotnichek.my1.ru">Статьи о бизнесе</option> <option value="http://rabotnichek.my1.ru">Обои на рабочий стол</option> </select>
<script> <!--
//Animated Link Box script- By http://rabotnichek.my1.ru //(http://rabotnichek.my1.ru) //http://rabotnichek.my1.ru
//specify # of frames for animation (integer above 2) var setframes=6
/////no need to edit below here/////////// var selected=-1 var switchit=-1 var cycle=0
function animate_go(){ if (cycle>=setframes){ document.take.take2.selectedIndex =selected window.location=document.take.take2.options[document.take.take2.selectedIndex].value return } switchit=(switchit==-1)? selected : -1 document.take.take2.selectedIndex =switchit cycle++
setTimeout("animate_go()",100) }
//--> </script> </td> </tr> <tr> <td width="100%"><div align="center"><p><input type="button" value="Go there>>" name="B1" onClick="selected=document.take.take2.selectedIndex;cycle=0;animate_go()"></div></td> </tr> </table> </form>
|