랜덤 배너 만들기
블로그에 단순 이미지나 광고배너등을 페이지 로딩때마다.
자동으로 번갈아 뛰워주는 소스입니다.
<!– 랜덤배너 –>
<script type = “text/javascript”>
var quotes = new Array()
quotes[0] =’이미지 또는 링크 주소‘
quotes[1] =’이미지 또는 링크 주소‘
quotes[2] =’이미지 또는 링크 주소‘
quotes[3] =’이미지 또는 링크 주소‘
quotes[4] =’이미지 또는 링크 주소‘
quotes[5] =’이미지 또는 링크 주소‘
var whichquote = Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
</script>
<!– 랜덤배너 –>
quotes[0] =’이미지 또는 링크 주소‘ 숫자만 늘리면서 계속 추가해주시면 됩니다.
아이라이크클릭이나 링크프라이스같은 CPA광고용으로 쓰면 좋을꺼 같네요.
랜덤배너.txt
다운로드