새로고침 랜덤 배너
자바 스크립트를 이용해 새로고침 할때 마다 랜덤으로 배너를 출력 하는 소스 입니다.
<script language=”Javascript”>
var how_many_ads = 4; // 배너의 갯수설정
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
document.write(‘<A href=”https://my.blogkor.com” target=_blank><IMG src=”이미지경로” height=60px; width=360px; border=0></A>’);
}
//——– 2번째 배너
if (ad==2) {
document.write(‘<A href=”https://my.blogkor.com” target=_blank><IMG src=”이미지경로” height=60px; width=360px; border=0></A>’);
}
//——– 3번째 배너
if (ad==3) {
document.write(‘<A href=”https://my.blogkor.com” target=_blank><IMG src=”이미지경로” height=60px; width=360px; border=0></A>’);
}
//——– 4번째 배너
if (ad==4) {
document.write(‘<A href=”https://my.blogkor.com” target=_blank><IMG src=”이미지경로” height=60px; width=360px; border=0></A>’);
}
</script>
보시는 것과 같이 배너는 총 4개로 되어 있는데요 배너는 추가 삭제가 가능 합니다.