정보창고/블로그 정보
HTML-배경이미지 랜덤으로 설정할때
풍란의 향기
2012. 2. 9. 13:15
<body>와 </body> 태그 사이에 넣어주세요.
<script>
document.body.onload=function(){
bgs=new Array();
bgs[bgs.length]='이미지 주소';
bgs[bgs.length]='이미지 주소';
bgs[bgs.length]='이미지 주소';
bgs[bgs.length]='이미지 주소';
bgs[bgs.length]='이미지 주소';
idx=Math.floor(Math.random()*bgs.length);
// document.body.style.backgroundAttachment='fixed';
// document.body.style.backgroundRepeat='no-repeat';
// document.body.style.backgroundImage='url('+bgs[idx]+')';
// document.body.style.background = "url("+ bgs[idx] +")";
document.body.style.background = "url("+ bgs[idx] +") no-repeat fixed";
}
</script>
태그 : 백그라운드 이미지, 배경이미지