½ÃÀÛÆäÀÌÁö·Î Áñ°Üã±âÃß°¡
·Î±×ÀÎ
ȸ¿ø°¡ÀÔ l Ã⼮üũ l ¸¶ÀÌÆäÀÌÁö l CGIMALL
happycgi
ÀÚ·á½Ç »çÀÌÆ®µî·Ï ·©Å·100 ÇÁ·Î±×·¥¸®ºä °ü¸®ÀÚÃßõÀÚ·á Ãʺ¸°¡À̵å
Ä¿¹Â´ÏƼ
Àüü ÆîÃ帱â
Äü¸Þ´º¸µÅ© jquery , CSS , PHP , Javascript , ¹«·áÆùÆ® , ASP
»ó¼¼°Ë»ö
Ȩ > JAVASCRIPT > javascript ¼Ò½ºÃ¢°í > À̹ÌÁö°ü·Ã > ¼îÇθô ½ºÅ©·Ñ »óÇ°Áø¿­ ÀÚ¹ÙÄÚµå »ó¼¼Á¤º¸
»çÀÌÆ®µî·Ï
Ŭ¶ó¿ìµåű×
javascript
PHP
html
asp
mysql
CSS
mobile
jquery
image
slide
�޴�
¸Þ´º
������Ʈ
ÇöÀçÁ¢¼ÓÀÚ ¸í »õ·Î°íħ
¼îÇθô ½ºÅ©·Ñ »óÇ°Áø¿­ ÀÚ¹ÙÄÚµå
¼Ò½ºÅë°èÁ¤º¸ ¿À·ù½Å°í ¹× ¹®ÀÇ
ÇØÇÇÆÀ
³×ƼÁð
Æ®À§ÅÍ·Î º¸³»±â ÆäÀ̽ººÏÀ¸·Î º¸³»±â
¼Ò½ººÐ·ù À̹ÌÁö°ü·Ã
´Ù¿î·Îµå Ƚ¼ö 1903 ȸ
°£´Ü¼³¸í ¼îÇθôÀÇ ÃßõÀ̳ª ´«¿¡ ¶ç´Â »óÇ°µéÀ» Ç÷¡½Ã°¡ ¾Æ´Ñ ÀÚ¹Ù·Î ½ºÅ©·ÑÀÌ µÇ°Ô²û ÇÕ´Ï´Ù. Ä¿¼­¸¦ Ŭ¸¯ÇÏ¸é ¹Ù·Î ³Ñ¾î°¡¸ç ÀÚµ¿À¸·Î °è¼Ó ½ºÅ©·ÑÀÌ µË´Ï´Ù.
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
ȨÆäÀÌÁö¹Ù·Î°¡±â ¼Ò½º´Ù¿î·Îµå µ¥¸ð ¹Ì¸®º¸±â ½ºÅ©·¦Çϱâ

¾Æ·¡´Â ÀÚ¹Ù½ºÅ©¸³Æ® ¿ø¹®ÀÔ´Ï´Ù.

<html>
<head>
<script language=javascript>
<!--
var downLayerId;
var dropDegree = 10; //½ºÅ©·Ñ ¼Óµµ
var doDirect;
var DirectTerm = 4000; //½ºÅ©·Ñ Áö¿¬½Ã°£
var curDropIdx = 0;
       
function DirectDown()
{
        clearInterval(doDirect);
        clearInterval(downLayerId);
       
        for(i = curDropIdx ;i < document.all["DropHit"].length + curDropIdx;i++){
                document.all["DropHit"][i%document.all["DropHit"].length].style.posTop = document.all["DropHit"][i%document.all["DropHit"].length].style.posHeight * (-1*((i-curDropIdx)%document.all["DropHit"].length));
        }
        var temp = 'setInterval("DownLayer()",20)';
        downLayerId = eval(temp);
        direction = "down";
}
function DownLayer()
{
        if(document.all["DropHit"][curDropIdx].style.posTop < document.all["DropHit"][curDropIdx].style.posHeight){
                for(j = curDropIdx ;j < document.all["DropHit"].length + curDropIdx;j++){
                        document.all["DropHit"][j%document.all["DropHit"].length].style.posTop += dropDegree;
                }
        }else{
                clearInterval(downLayerId);
                for(j = curDropIdx ;j < document.all["DropHit"].length + curDropIdx;j++){
                        document.all["DropHit"][j%document.all["DropHit"].length].style.posTop = document.all["DropHit"][j%document.all["DropHit"].length].style.posHeight *((-1*((j-curDropIdx)%document.all["DropHit"].length))+1);
                }
                curDropIdx = (curDropIdx + 1) ;
                curDropIdx = curDropIdx > document.all["DropHit"].length-1 ? curDropIdx%document.all["DropHit"].length:curDropIdx;
                var temp = 'setInterval("DirectDown()",DirectTerm)';
                doDirect = eval(temp);
        }
}
function DirectUp()
{
        clearInterval(doDirect);
        clearInterval(downLayerId);
        var tempIdx = 0;
        for(i = 0;i<document.all["DropHit"].length;i++){
                tempIdx = (document.all["DropHit"].length + curDropIdx - i) %document.all["DropHit"].length;
                document.all["DropHit"][tempIdx].style.posTop = i*document.all["DropHit"][tempIdx].style.posHeight;
        }
        var temp = 'setInterval("UpLayer()",20)';
        downLayerId = eval(temp);
        direction = "up";
}
function UpLayer()
{
        var tempIdx = 0;
        if(document.all["DropHit"][curDropIdx].style.posTop < document.all["DropHit"][curDropIdx].style.posHeight && document.all["DropHit"][curDropIdx].style.posTop > document.all["DropHit"][curDropIdx].style.posHeight * (-1)){
                for(j = 0 ;j < document.all["DropHit"].length;j++){
                        tempIdx = (document.all["DropHit"].length + curDropIdx - j) %document.all["DropHit"].length;
                        document.all["DropHit"][tempIdx].style.posTop -= dropDegree;
                }
        }else{
                clearInterval(downLayerId);
                for(j = 0;j<document.all["DropHit"].length;j++){
                        tempIdx = (document.all["DropHit"].length + curDropIdx - j) % document.all["DropHit"].length;
                        document.all["DropHit"][tempIdx].style.posTop = (j-1)*(document.all["DropHit"][tempIdx].style.posHeight);
                }
                curDropIdx = (curDropIdx - 1) ;
                curDropIdx = curDropIdx < 0 ? document.all["DropHit"].length-1:curDropIdx;
                var temp = 'setInterval("DirectUp()",DirectTerm)';
                doDirect = eval(temp);
        }
}
//-->
</script>
</head>
<body>
<table cellspacing=0 cellpadding=0 border=0>
<tr>
        <td>
                <div style="left:0px; overflow:hidden; width:380px; position:relative; top:0px; height:200px">
                        <div id=DropHit style="width:375px; height:200px; position:absolute; left:0px; top:0px; z-index:1; visibility:visible;">
                                <table border=0 cellpadding=0 cellspacing=0 width=375>
                                <tr>
                                        <td><a href=http://www.happycgi.com><img border=0 src=http://home.cein.or.kr/~homepy/js/js464/img01.gif width=125 height=200></a></td>
                                        <td><a href=http://www.happycgi.com><img border=0 src=http://home.cein.or.kr/~homepy/js/js464/img02.gif width=125 height=200></a></td>
                                        <td><a href=http://www.happycgi.com><img border=0 src=http://home.cein.or.kr/~homepy/js/js464/img03.gif width=125 height=200></a></td>
                                </tr>
                                </table>
                        </div>
                        <div id=DropHit style="width:375px; height:200px; position:absolute; left:0px; top:-200px; z-index:1; visibility:visible;">
                                <table border=0 cellpadding=0 cellspacing=0 width=375>
                                <tr>
                                        <td><a href=http://www.happycgi.com><img border=0 src=http://home.cein.or.kr/~homepy/js/js464/img04.gif width=125 height=200></a></td>
                                        <td><a href=http://www.happycgi.com><img border=0 src=http://home.cein.or.kr/~homepy/js/js464/img05.gif width=125 height=200></a></td>
                                        <td><a href=http://www.happycgi.com><img border=0 src=http://home.cein.or.kr/~homepy/js/js464/img06.gif width=125 height=200></a></td>
                                </tr>
                                </table>
                        </div>
                        <script language=javascript>DirectDown();</script>
                </div>
        </td>
        <td>
                <table cellspacing=0 cellpadding=0 width=13 border=0>
                <tr><td><a href="javascript:DirectUp()"><img border=0 src=http://home.cein.or.kr/~homepy/js/js464/scroll_up.gif></a></td></tr>
                  <tr><td align=center><img height=173 src=http://home.cein.or.kr/~homepy/js/js464/scroll_line.gif></td></tr>
                <tr><td><a href="javascript:DirectDown()"><img border=0 src=http://home.cein.or.kr/~homepy/js/js464/scroll_down.gif></a></td></tr>
                </table>
        </td>
</tr>
</table>

</body>
</html>

 


³×ƼÁð ÀÇ°ß   ÀÌ¿ëÇϽŠÀÚ·áÀÇ Èı⸦ ÀÚÀ¯·Ó°Ô ÀÛ¼ºÇϼ¼¿ä. (»ó¾÷ÀûÀÎ ±¤°í ¹× µµ¹è¼º ±Û µîÀº »çÀüÅ뺸¾øÀÌ »èÁ¦µÉ ¼ö ÀÖ½À´Ï´Ù.)
³»¿ë ¾ÆÀ̵ð ÀÇ°ß³²±â±â
µî·ÏµÈ ÀÇ°ßÀÌ ¾ø½À´Ï´Ù.
1
À̸§
³»¿ë
:³×¸Â¾Æ¿ä: :È­³ª´Â±º¿ä: :Àá¿Í: :¿ì¿ïÇØ: :À̰ǾƳÄ: :¿ÕÇÏÇÏ: ¿Õ¿ôÀ½~ ³î·¥~
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
µµ¹è¹æÁöÅ°
 77958885 º¸ÀÌ´Â µµ¹è¹æÁöÅ°¸¦ ÀÔ·ÂÇϼ¼¿ä.