랜덤 이미지 스크립트 총 이미지 3개에서 6개로 뿔리려면 어떻게 해야 하나요?
본문
랜덤 이미지 스크립트 총 이미지 3개에서 6개로 뿔리려면 어떻게 해야 하나요?
해당 스크립트 입니다. 아래 스크립트는 현재 광고가 3개뿐이 노출이 안됩니다.
6~7개 정도 이미지 호출 하려면 어떻게 수정해줘야 하나요?
<SCRIPT language="JavaScript">
<!-- Begin
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="첫번째 광고입니다.";
url="http://www.naver.com/";
alt="amazon.com";
banner="http://i.imgur.com/N3vPmQu.png";
width="468";
height="60";
}
if (ad==2) {
txt="두번째 광고입니다.";
url="http://www.daum.net/";
alt="cybershop.com";
banner="http://i.imgur.com/x1rEigr.png";
width="468";
height="60";
}
if (ad==3) {
txt="세번째 광고입니다.";
url="http://www.nate.com/";
alt="goto.com";
banner="http://i.imgur.com/60Sud4A.png";
width="468";
height="60";
}
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>
답변 1
var how_many_ads = 3;
여기 숫자 3을 6으로 수정하고..
if (ad==3) {
txt="세번째 광고입니다.";
...
...
..
}
여기 아래에 같은 방법으로 이렇게 추가..
if (ad==4) {
txt="네번째 광고입니다.";
url="http://www.nate.com/";
alt="goto.com";
banner="http://i.imgur.com/60Sud4A.png";
width="468";
height="60";
}
if (ad==5) {
txt="다섯번째 광고입니다.";
url="http://www.nate.com/";
alt="goto.com";
banner="http://i.imgur.com/60Sud4A.png";
width="468";
height="60";
}
if (ad==6) {
txt="여섯번째 광고입니다.";
url="http://www.nate.com/";
alt="goto.com";
banner="http://i.imgur.com/60Sud4A.png";
width="468";
height="60";
}
같은 방법으로 원하는 개수만큼 생성하면 됩니다.