묻고답하기
랜덤 이미지 스크립트 총 이미지 3개에서 6개로 뿔리려면 어떻게 해야 하나요?
2015.08.08 05:44
랜덤 이미지 스크립트 총 이미지 3개에서 4개로 뿔리려면 어떻게 해야 하나요?
해당 스크립트 입니다. 아래 스크립트는 현재 광고가 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>
댓글 2
-
꾸링
2015.08.08 05:53
-
사랑해요XE
2015.08.08 07:48
제가 4개로 고쳐봤는데요 안되더라구요.. 무엇이 잘못됫는지좀 알려주세요...
<SCRIPT language="JavaScript">
<!-- Begin
var how_many_ads = 4;
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";
}
if (ad==4) {
txt="네번째 광고입니다.";
url="http://www.google.com/";
alt="humhum.com";
banner="http://i.imgur.com/834d4A.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>
if (ad==4){
txt="4 광고입니다.";
url="http://www.nate.com/";
alt="goto.com";
banner="http://i.imgur.com/60Sud4A.png";
width="468";
height="60";
}