<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>


태그 : 백그라운드 이미지, 배경이미지

Posted by 알 수 없는 사용자
,