>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Разработка http://forum.mozilla-russia.org/viewforum.php?id=18 >видео плеер крутилка по точному времени http://forum.mozilla-russia.org/viewtopic.php?id=53988 |
9vuvwiautl8l9e5 > 29-02-2012 14:16:13 |
привет, есть следующий скрипт который отображает периодически изображение и ссылку, нужно добавить возможность и изменения: Выделить код Код:<!-- STEP ONE: Paste this code into the BODY of your HTML document --> <script language="JavaScript"> <!-- function adArray() { for (i=0; i*2<adArray.arguments.length; i++) { this[i] = new Object(); this[i].src = adArray.arguments[i*2]; this[i].href = adArray.arguments[i*2+1]; } this.length = i; } function getAdNum() { dat = new Date(); dat = (dat.getTime()+"").charAt(8); if (dat.length == 1) ad_num = dat%ads.length; else ad_num = 0; return ad_num; } /*this array follows this pattern -> path to first image, first image link, path to second image, second image link....*/ var ads = new adArray( "http://site.com/image.gif", "http://site.com/page.htm" ); var ad_num = getAdNum(); // don't change this line document.write('<div align="center"><table cellpadding=0 cellspacing=1 border=0><tr><td>' +'<noindex><A rel="nofollow" target="_blank" href="'+ads[ad_num].href+'"><IMG SRC="'+ads[ad_num].src+'" ' +'border="0" name="js_ad"></a></noindex></td></tr></table></div>'); // ****** YOU NEED NOT MODIFY ANYTHING THAT IS NOT IN BETWEEN THESE TWO COMMENTS **** link_num = document.links.length-1; function rotateSponsor() { if (document.images) { ad_num = (ad_num+1)%ads.length; document.js_ad.src = ads[ad_num].src; document.links[link_num].href = ads[ad_num].href; setTimeout("rotateSponsor()",5000); } } setTimeout("rotateSponsor()",5000); // --> </script> |