묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
[re] 좀 길어서 답글을 답니다.
2002.10.10 13:04
아래의 소스를 <HEAD> 와 </HEAD> 사이에 넣어주세요.
<script language="JavaScript">
function Random() {
var day = new Date();
var num= Math.abs(Math.sin(day.getTime()/1000));
return num;
}
function Random2() {
var x = Random();
if (x > .99)
{document.write ("<style> body {background:url('배경이미지경로1') no-repeat fixed right bottom} </style>"); return; }
if (x > .88)
{document.write ("<style> body {background:url('배경이미지경로2') no-repeat fixed right bottom} </style>"); return; }
if (x > .77)
{document.write ("<style> body {background:url('배경이미지경로3') no-repeat fixed right bottom} </style>"); return; }
if (x > .66)
{document.write ("<style> body {background:url('배경이미지경로4') no-repeat fixed right bottom} </style>"); return; }
if (x > .55)
{document.write ("<style> body {background:url('배경이미지경로5') no-repeat fixed right bottom} </style>"); return; }
if (x > .44)
{document.write ("<style> body {background:url('배경이미지경로6') no-repeat fixed right bottom} </style>"); return; }
if (x > .33)
{document.write ("<style> body {background:url('배경이미지경로7') no-repeat fixed right bottom} </style>"); return; }
if (x > .0)
{document.write ("<style> body {background:url('배경이미지경로8') no-repeat fixed right bottom} </style>"); return; }
}
Random2();
</script>
// 배경이미지경로는 1~8 까지 다른이미지를 넣어주셔야겠죠?
// <Style> 내용은 아래와 같습니다.
// no-repeat : 배경이미지 반복금지
// fixed : 배경이미지 고정시키기
// right : 오른쪽에 위치{기본값은 left, center, right}
// bottom : 하단에 위치{기본값은 top, middle, bottom}
그리고 배경이미지 고정하는 스크립트는
bgproperties="fixed" 인데 바디 부분에 넣어 주시면 됩니다.
위의 내용은 딸치의 드립위버 공부방에서 퍼온 것을 아주 아주 약간 수정 한 것입니다.(http://www.ddalchi.co.kr/)
<script language="JavaScript">
function Random() {
var day = new Date();
var num= Math.abs(Math.sin(day.getTime()/1000));
return num;
}
function Random2() {
var x = Random();
if (x > .99)
{document.write ("<style> body {background:url('배경이미지경로1') no-repeat fixed right bottom} </style>"); return; }
if (x > .88)
{document.write ("<style> body {background:url('배경이미지경로2') no-repeat fixed right bottom} </style>"); return; }
if (x > .77)
{document.write ("<style> body {background:url('배경이미지경로3') no-repeat fixed right bottom} </style>"); return; }
if (x > .66)
{document.write ("<style> body {background:url('배경이미지경로4') no-repeat fixed right bottom} </style>"); return; }
if (x > .55)
{document.write ("<style> body {background:url('배경이미지경로5') no-repeat fixed right bottom} </style>"); return; }
if (x > .44)
{document.write ("<style> body {background:url('배경이미지경로6') no-repeat fixed right bottom} </style>"); return; }
if (x > .33)
{document.write ("<style> body {background:url('배경이미지경로7') no-repeat fixed right bottom} </style>"); return; }
if (x > .0)
{document.write ("<style> body {background:url('배경이미지경로8') no-repeat fixed right bottom} </style>"); return; }
}
Random2();
</script>
// 배경이미지경로는 1~8 까지 다른이미지를 넣어주셔야겠죠?
// <Style> 내용은 아래와 같습니다.
// no-repeat : 배경이미지 반복금지
// fixed : 배경이미지 고정시키기
// right : 오른쪽에 위치{기본값은 left, center, right}
// bottom : 하단에 위치{기본값은 top, middle, bottom}
그리고 배경이미지 고정하는 스크립트는
bgproperties="fixed" 인데 바디 부분에 넣어 주시면 됩니다.
위의 내용은 딸치의 드립위버 공부방에서 퍼온 것을 아주 아주 약간 수정 한 것입니다.(http://www.ddalchi.co.kr/)