¿¡¾îÄÁ¼³Ä¡¾÷ü ¾È³»

ÀÎõ±¤¿ª½Ã

032-467-6004

°æ±â¼ö¿ø½Ã

031-239-3196

°æ±âÈ­¼º½Ã

031-377-6855

°æ±â¾È»ê½Ã

°æ±â¿À»ê½Ã

°æ±â¿ëÀνÃ

031-377-6855

°æ±â¼º³²½Ã

°æ±â½ÃÈï½Ã

010-9266-5975

°æ±âºÎõ½Ã

032-204-8010

Àü±¹ ¿¡¾îÄÁ¾÷ü ¾È³»


ÃÑ °Ô½Ã¹° 209°Ç, ÃÖ±Ù 0 °Ç
   
¸µÅ©¿¡ ¸¶¿ì½º¸¦ ¿Ã¸®¸é º°ÀÌ ½ñ¾ÆÁö´Â ½ºÅ©¸³Æ®
±Û¾´ÀÌ : À̾¥½ÅÀ屺 ³¯Â¥ : 2006-09-28 (¸ñ) 00:14 Á¶È¸ : 9025
¿ì¼± <head></head>¿¡ ¾Æ·¡ ¼Ò½º¸¦ ³ÖÀ¸¼¼¿ä.
<script>
// CREDITS:
// Snowing Links
// By Peter Gehrig
// Copyright (c) 2004 Peter Gehrig. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://www.24fun.com
// info@24fun.com
// 10/27/2004
// IMPORTANT:
// If you add this script to a script-library or script-archive
// you have to add a highly visible link to
// http://www.24fun.com on the webpage
// where this script will be featured
///////////////////////////////////////////////////////////////////////////
// CONFIGURATION STARTS HERE
///////////////////////////////////////////////////////////////////////////
// Set the number of snowflakes (more than 30 - 40 not recommended)
var snowmax=35
// Set the colors for the snow. Add as many colors as you like
var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD")
// Set the fonts, that create the snowflakes. Add as many fonts as you like
var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS")
// Set the letter that creates your snowflake (recommended:*)
var snowletter="*"
// Set the speed of sinking (recommended values range from 0.3 to 2)
var sinkspeed=0.6
// Set the maximal-size of your snowflaxes
var snowmaxsize=22
// Set the minimal-size of your snowflaxes
var snowminsize=8
// Set the width of the snowing-zone (pixels)
var snowboxwidth=100
///////////////////////////////////////////////////////////////////////////
// CONFIGURATION ENDS HERE
///////////////////////////////////////////////////////////////////////////
// Do not edit below this line
var snow=new Array()
var marginbottom
var marginright
var marginleft
var margintop
var snowingzone=1
var posleft
var postop
var is_snowing=false
var timer
var i_snow=0
var x_mv=new Array();
var crds=new Array();
var lftrght=new Array();
var browserinfos=navigator.userAgent
var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/)
var ns6=document.getElementById&&!document.all
var opera=browserinfos.match(/Opera/) 
var browserok=ie5||ns6||opera
function randommaker(range) {      
    rand=Math.floor(range*Math.random())
    return rand
}
function startsnow() {
    is_snowing=true
    if (ie5 || opera) {
        margintop = postop+15
        marginbottom = document.body.clientHeight
        marginleft = posleft
        marginright = posleft+snowboxwidth
    }
    else if (ns6) {
        margintop = postop+15
        marginbottom = window.innerHeight
        marginleft = posleft
        marginright = posleft+snowboxwidth
    }
    var snowsizerange=snowmaxsize-snowminsize
    for (i=0;i<=snowmax;i++) {
        crds[i] = 0;                     
        lftrght[i] = Math.random()*15;        
        x_mv[i] = 0.03 + Math.random()/10;
        snow[i]=document.getElementById("s"+i)
        snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)]
        snow[i].size=randommaker(snowsizerange)+snowminsize
        snow[i].style.fontSize=snow[i].size
        snow[i].style.color=snowcolor[randommaker(snowcolor.length)]
        snow[i].sink=sinkspeed*snow[i].size/5
        snow[i].posx=randommaker(snowboxwidth)+marginleft-2*snow[i].size
        if (ie5 || opera) {
            if (snow[i].posx>=document.body.clientWidth-2*snow[i].size) {
                snow[i].posx=snow[i].posx-snowboxwidth
            }
        }
        if (ns6) {
            if (snow[i].posx>=window.innerWidth-2*snow[i].size) {
                snow[i].posx=snow[i].posx-snowboxwidth
            }
        }
        snow[i].posy=randommaker(marginbottom-margintop)+margintop-2*snow[i].size
        snow[i].style.left=snow[i].posx
        snow[i].style.top=snow[i].posy
        snow[i].style.visibility="visible";
       
    }
    movesnow()
}
function stopsnow() {
    is_snowing=false
}
function movesnow() {
    if (is_snowing) {
        for (i=0;i<=snowmax;i++) {
            crds[i] += x_mv[i];
            snow[i].posy+=snow[i].sink
            snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]);
            snow[i].style.top=snow[i].posy
       
            if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){
                snow[i].posx=randommaker(snowboxwidth)+marginleft-2*snow[i].size
                if (ie5 || opera) {
                    if (snow[i].posx>=document.body.clientWidth-2*snow[i].size) {
                        snow[i].posx=snow[i].posx-snowboxwidth
                    }
                }
                if (ns6) {
                    if (snow[i].posx>=window.innerWidth-2*snow[i].size) {
                        snow[i].posx=snow[i].posx-snowboxwidth
                    }      
                }
                snow[i].posy=randommaker(marginbottom-margintop)+margintop-2*snow[i].size
            }
        }
        var timer=setTimeout("movesnow()",50)
    }
    else {
        for (i=0;i<=snowmax;i++) {
            snow[i].style.visibility="hidden";
        }
    }
}
function getcoordinates(e) {
    if (ie5 || opera) {
        posleft=document.body.scrollLeft+window.event.x;
        postop=document.body.scrollTop+window.event.y;
    }
    if (ns6) {
        posleft=e.pageX
        postop=e.pageY
    }
}
for (i=0;i<=snowmax;i++) {
    document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>")
}
if (browserok) {
    document.onmousemove=getcoordinates
}
</script>

<body></body>»çÀÌ ¾Æ¹«°÷À̳ª...
<a href="¸µÅ©ÁÖ¼Ò" onMouseOver="startsnow()" onMouseOut="stopsnow()">¸µÅ©³»¿ë</a>

   


ÃÑ °Ô½Ã¹° 209°Ç, ÃÖ±Ù 0 °Ç
¹øÈ£ Á¦¸ñ ±Û¾´ÀÌ ³¯Â¥ Á¶È¸
149  XP SP2 Æ˾÷â Â÷´Ü°ú Çعý À̾ßÈ£ 09-29 9887
148  Æ¯¼ö¹®ÀÚ ¸·´Â ½ºÅ©¸³Æ® À̾ßÈ£ 09-29 9108
147  À̹ÌÁö ¾øÀÌ ¸ð¼­¸® µÕ±Ù Å×ÀÌºí ¸¸µé±â Å×À̺í 09-29 9991
146  ¸¶¿ì½º¸¦ µû¶ó ´Ù´Ï´Â ·¹À̾î À̾¥½ÅÀ屺 09-28 9557
145  ¾×ƼºêX IE ÆÐÄ¡¿¡ ´ëÇÑ ´ëó¹ý À̾¥½ÅÀ屺 09-28 8085
144  ¸µÅ©¿¡ ¸¶¿ì½º¸¦ ¿Ã¸®¸é º°ÀÌ ½ñ¾ÆÁö´Â ½ºÅ©¸³Æ® À̾¥½ÅÀ屺 09-28 9026
143  À¥¹®¼­¿¡ ÆäÀÌÁö ·ÎµùÁß È¿°ú À̹οµ 09-27 9973
142  ¹è°æ³Ö±âÀÇ ¸ðµç °Í ÅÂ±×¾ß 09-15 9252
141  ³» ȨÆäÀÌÁö°¡ ´Ù¸¥ »çÀÌÆ®ÀÇ ÇÁ·¹ÀÓ¿¡ °¤È÷´Â ¡¦ wlskek 08-20 9400
140  ÆûÇʵå·Î ¹ÙÅÁ»ö»óÁ¶Á¤ wlskek 08-20 8820
139  À̹ÌÁö Åõ¸íµµÁ¶Àý wlskek 08-20 9572
138  ¿À¸¥ÂÊ ½ºÅ©·Ñ¹Ù°¡ ±ôºýÀÌ´Â ¼Ò½º wlskek 08-20 9264
137  ¸ðÀÚÀÌÅ©½Ä ½½¶óÀ̵å¼î ÇÁ·Î 08-10 9859
136  ¾ÆÀÌÇÁ·¹ÀÓ ÀÚµ¿À¸·Î ´Ã¾î³ª´Â ÀÚ¹Ù ½ºÅ©¸³Æ® ÇÁ·Î 08-10 9825
135  ºÎµå·¯¿î ÆäÀÌÁö À̵¿ ÇÁ·Î 08-10 8389
134  Á¢¼Ó ÇÒ ¶§ ¸¶´Ù ¹è°æÀ½¾Ç ´Ù¸£°ÔÇϱâ ÇÁ·Î 05-31 8853
133  »óÅÂÇ¥½ÃÁÙ¿¡ ±ÛÀÚ ¾È³ª¿À°Ô Çϱâ ÇÁ·Î 05-31 9212
132  »óÅÂ¹Ù¿Í Á¦¸ñÇ¥½ÃÁÙ¿¡ ȨÆäÀÌÁö¿¡ ¸Ó¹®½Ã°£ Ã⡦ ÇÁ·Î 05-31 9446
131  ºê¶ó¿ìÀú Á¤º¸ ÀÚ¹Ù½ºÅ©¸³Æ® ÇÁ·Î 04-29 9348
130  ÃÖ±Ù ¾÷µ¥ÀÌÆ® ³¯Â¥ ±â·ÏÇϱâ ÇÁ·Î 04-29 8335
óÀ½  1  2  3  4  5  6  7  8  9  10  ´ÙÀ½  ¸Ç³¡
 

ȸ»ç¼Ò°³ | ÀÌ¿ë¾à°ü | °³ÀÎÁ¤º¸Ãë±Þ¹æħ | Ã¥ÀÓÀÇÇÑ°è¿Í ¹ýÀû°íÁö | À̸ÞÀϹ«´Ü¼öÁý°ÅºÎ | ÀÌ¿ë¾È³»