Advertisement
2_2002-2004 Internet/ Browsers/ HTML #126389

Banner Rotator v2

This Script displays a different Banner each time your site is loaded.Took Me 5 minutes

AI

Podsumowanie AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Kod źródłowy
original-source
<script LANGUAGE="JavaScript">
<!-- Begin
var how_many_ads = 2;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="";
url="";
alt="";
banner="";
width="";
height="";
}
if (ad==2) {
txt="";
url="";
alt="";
banner="";
width="";
height="";
}
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small>' + txt + '</small></a>');
document.write('</center>');
// End -->
</script>
Oryginalne komentarze (3)
Odzyskane z Wayback Machine