denise_2305
Geregistreerd op: 15 Jun 2007 Berichten: 3
|
Geplaatst: Do Sep 27, 2007 8:12 am Onderwerp: image slider |
|
|
Ik heb een foto die ik af en toe wil laten veranderen.
Dit is een script dat ik van een andere site heb afgehaald maar het werkt volgens mij niet zoals het zou moeten.
de foto's zouden 1,1,2,2,2,2,1,1 getoond moeten worden maar dat gebeurt dus niet.
Heeft iemand enig idee wat er verkeerd is in dit script of hoe het wel zou moeten?
(sommige onderdelen heb ik 'uit' (//) gezet omdat ik ze niet nodig heb.
Alvast bedankt
Groetjes Denise
| Code: |
var how_many_ads = 8;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
/*txt="Cool Resources & JavaScripts";*/
url="http://test.com/";
alt="Cool Resources & JavaScripts";
image="1.jpg";
width="252";
height="292";
}
if (ad==2) {
/*txt="Cool Resources & JavaScripts";*/
url="http://test.com/";
alt="Cool Resources & JavaScripts";
image="1.jpg";
width="252";
height="292";
}
if (ad==3) {
/*txt="Cool Resources & JavaScripts"; */
url="http://test.com/";
alt="Cool Resources & JavaScripts";
image="2.jpg";
width="252";
height="292";
}
if (ad==4) {
/*txt="Cool Resources & JavaScripts"; */
url="http://test.com/";
alt="Cool Resources & JavaScripts";
image="2.jpg";
width="252";
height="292";
}
if (ad==5) {
/*txt="Cool Resources & JavaScripts";*/
url="http://test.com/";
alt="Cool Resources & JavaScripts";
image="2.jpg";
width="252";
height="292";
}
if (ad==6) {
/*txt="Cool Resources & JavaScripts";*/
url="http://test.com/";
alt="Cool Resources & JavaScripts";
image="2.jpg";
width="252";
height="292";
}
if (ad==7) {
/*txt="Cool Resources & JavaScripts"; */
url="http://test.com/";
alt="Cool Resources & JavaScripts";
image="1.jpg";
width="252";
height="292";
}
if (ad==8) {
/*txt="Cool Resources & JavaScripts"; */
url="http://test.com/";
alt="Cool Resources & JavaScripts";
image="1.jpg";
width="252";
height="292";
}
//document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + image + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0></a>');
//document.write('<small>' + txt + '</small></a>');
//document.write('</center>');
// End -->
|
|
|