http://oxtag.com/html/ex/reveal/reveal.html


<script language="JavaScript" src="http://oxtag.com/html/ex/reveal/reveal.js"></script>

<script language="JavaScript">
//////////////////////////////////
//        Customise Reveal        //
//////////////////////////////////

/*
The following is required only if you
want the user to click to reveal the page
*/
var clickw=150;                // 버튼 가로크기
var clickh=20;                // 버튼 세로크기
var clickb=2;                // 테두리 두께
var clickc="#000000";        // 버튼 테두리 색상
var clickbg="#000000";        // 버튼 배경색
var clickt="들어가기";        // 처음 클릭하는 버튼 글자
var clickFont="font-family:돋움,verdana,arial,helvetica; font-size:10pt; font-weight:bold; color:#FFFFFF";                // 글자 글꼴 크기 두께 색상 등 조절

/*
Following is required to initialise Reveal
The function is called in the following manner :
        initReveal(type,div1bg,div2bg,div1bw,div2bw,div1bc,div2bc,step,timeOut,click)
        Parameter description :
        type        ->        0 for vertical | 1 for horizantal
        div1bg        ->        Background color of first layer                (eg. '#CCCCCC')
        div2bg        ->        Background color of second layer        (eg. '#CCCCCC')        
        div1bw        ->        Border width of first layer                (eg. 1)
        div2bw        ->        Border width of second layer                (eg. 1)
        div1bc        ->        Border color of first layer                (eg. '#000000')
        div2bc        ->        Border color of second layer                (eg. '#000000')
        step        ->        The amount revealed every interval        (eg. 5)
        timeOut        ->        The delay in milliseconds
        click        ->        true if user has to click to reveal | false for auto reveal
        See below for an example of how to call the function.
*/

new initReveal(0,'#c2c2c2','#CCCCCC',1,1,'#000000','#000000',3,10,true);
// 차례대로 상단-하단 배경색상, 상단-하단 경계선 색상
</script>
Posted by 알 수 없는 사용자
,