• ÆÐ¼Ç
  • ¾ó±¼ ÀνÄ
  • À¥¼Ò¼³
  • ¾ÆÀÌÅÛ¸ô
³²À» ÇູÇÏ°Ô ¸¸µé¾îÁÖ´Â, ¿ô±ä´ëÇп¡ ¿À¼Ì½À´Ï´Ù.












Á¦¸ñ j a - v a s c r i p t Áú¹®.. [2]
ÀÛ¼ºÀÚ ³ë¿¤Â¥ÀÀ³ô³ª»õ
¹øÈ£ 5851 Ãßõ 1 ¹Ý´ë 0 ´ä±Û 2 Á¶È¸ 236 ÀÛ¼º½Ã°£ 2018-03-18 17:49:06
ÀÌÀü
´ÙÀ½
̵̧
¹Ý´ë
½Å°í
´ÜÃà URL º¹»ç
½ºÅ©·¦
ÃßõµÇ¾ú½À´Ï´Ù.
¡ç CTRL+C ·Î º¹»çÇϰí CTRL+V ·Î ºÙ¿©³ÖÀ¸¼¼¿ä!
   ±â±â¸¦ °¨ÁöÇÏ¿© ÃÖÀû URL ·Î º¸³»ÁÝ´Ï´Ù.
´ÜÃà URL: https://humoruniv.com/program5851 URL º¹»ç

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>

    #secret {
        width:500px;
        height:800px;
        border:1px solid grey;
        margin:auto;
        border-radius: 2ex;
        background-color:#DDD;
        
    }
    
    
    
    #ip {
        margin-left:35px;
        margin-top:20px;
        margin-bottom:30px;
        border:1px dashed black;
        height: 100px;
        width: 400px;
        padding-left:30px;
        letter-spacing:0.5em;
        
    }
    
    .btn {
        width:130px;
        height:130px;
        border:1px solid black;
        background-color:white;
        margin:5px;
        text-shadow: -1px 2px 2px grey;
        font-size:6em;
        outline-color: white;
    }
    
    #nums {
        text-align:center;
    }
    
    #btn11, #btn12 {
        position:relative;
        top:-16px;
        font-size:3em;
    }
</style>
<script>
    window.o n - l o a d = function£¨£© {
        var btn1, btn2, btn3, btn4, btn5, btn6, btn7, btn8, btn9, btn10, btn11, btn12;
        var ip1;
        var count = 0;
        
        ip1 = window.document.form2.ip1;
        
        btn1 = window.document.form1.btn1;
        btn2 = window.document.form1.btn2;
        btn3 = window.document.form1.btn3;
        btn4 = window.document.form1.btn4;
        btn5 = window.document.form1.btn5;
        btn6 = window.document.form1.btn6;
        btn7 = window.document.form1.btn7;
        btn8 = window.document.form1.btn8;
        btn9 = window.document.form1.btn9;
        btn10 = window.document.form1.btn10;
        btn11 = window.document.form1.btn11;
        btn12 = window.document.form1.btn12;

            window.o n - k e y d o w n = function£¨£© {
                if £¨event.keyCode == 48 || event.keyCode == 96£© {
                    ip1.value += 0;    
                } else if £¨event.keyCode == 49 || event.keyCode == 97£© {
                    ip1.value += 1;    
                } else if £¨event.keyCode == 50 || event.keyCode == 98£© {
                    ip1.value += 2;    
                } else if £¨event.keyCode == 51 || event.keyCode == 99£© {
                    ip1.value += 3;    
                } else if £¨event.keyCode == 52 || event.keyCode == 100£© {
                    ip1.value += 4;    
                } else if £¨event.keyCode == 53 || event.keyCode == 101£© {
                    ip1.value += 5;    
                } else if £¨event.keyCode == 54 || event.keyCode == 102£© {
                    ip1.value += 6;    
                } else if £¨event.keyCode == 55 || event.keyCode == 103£© {
                    ip1.value += 7;    
                } else if £¨event.keyCode == 56 || event.keyCode == 104£© {
                    ip1.value += 8;    
                } else if £¨event.keyCode == 57 || event.keyCode == 105£© {
                    ip1.value += 9;    
                } else if £¨event.keyCode == 13£© {
                        
                        if £¨ip1.value == "0425"£© {
                            window.document.body.bgColor = "cornflowerblue";
                        } else if £¨ip1.value != "0425"£© {
                            count++;
                            if £¨count == 1£© {
                                window.document.body.bgColor = "red";
                            } else if £¨count == 2£© {
                                window.document.body.bgColor = "#A60A0A";
                                window.document.form1.btn11.readOnly = "true";
                            }
                        }
                } else if £¨event.keyCode == 8£© {
                    if £¨ip1.value.length != 1£© {
                        ip1.value = ip1.value.substring£¨0, £¨ip1.value.length - 1£©£©;
                    } else {
                        ip1.value = "";
                    }
                } 
                  
            };
            
            btn1.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 9;
                }
            }; 
            btn2.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 8;
                }
            };
            btn3.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 7;
                }
            };
            
            btn4.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 6;
                }
            };
            btn5.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 5;
                }
            };
            btn6.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 4;
                }
            };
            btn7.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 3;
                }
            };
            btn8.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 2;
                }
            };
            btn9.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 1;
                }
            };
            btn10.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    ip1.value += 0;
                }
            };
            btn11.o n - m o u s e d o w n = function£¨£© {
                if £¨event.buttons == 1£© {
                    if £¨ip1.value.length != 1£© {
                        ip1.value = ip1.value.substring£¨0, £¨ip1.value.length - 1£©£©;
                    } else {
                        ip1.value = "";
                    }
                }
            };
            btn12.o n - m o u s e d o w n = function£¨£© {
                
                if £¨event.buttons == 1 && ip1.value == "0425"£© {
                    window.document.body.bgColor = "cornflowerblue";
                } else if £¨event.buttons == 1 && ip1.value != "0425"£© {
                    count++;
                    if £¨count == 1£© {
                        window.document.body.bgColor = "red";
                    } else if £¨count == 2£© {
                        window.document.body.bgColor = "#A60A0A";
                        window.document.form1.btn11.readOnly = "true";
                    }
                }
            };
        }

</script>
</head>
<body>
    <!---->
    <div id = "secret">
        <form name = "form2" id = "form2">
            <input type = "text" id = "ip" name = "ip1" class = "btn" maxlength="4">  À̺κÐ...
        </form>
        <div id = "nums">
            <form name = "form1" id = "form1">
                <input type = "button" id  = "btn1" name = "btn1" class = "btn" value = "9">
                <input type = "button" id  = "btn2" name = "btn2" class = "btn" value = "8">
                <input type = "button" id  = "btn3" name = "btn3" class = "btn" value = "7">
                <input type = "button" id  = "btn4" name = "btn4" class = "btn" value = "6">
                <input type = "button" id  = "btn5" name = "btn5" class = "btn" value = "5">
                <input type = "button" id  = "btn6" name = "btn6" class = "btn" value = "4">
                <input type = "button" id  = "btn7" name = "btn7" class = "btn" value = "3">
                <input type = "button" id  = "btn8" name = "btn8" class = "btn" value = "2">
                <input type = "button" id  = "btn9" name = "btn9" class = "btn" value = "1">
                <input type = "button" id  = "btn10" name = "btn10" class = "btn" value = "0">
                <input type = "button" id  = "btn11" name = "btn11" class = "btn" value = "del">
                <input type = "button" id  = "btn12" name = "btn12" class = "btn" value = "enter">
            </form>
        </div>
    </div>
    
        
</body>
</html>

¿©±â¼­ input¿¡ maxlength°¡ ¸ÔÁú¾Ê´Âµ¥ ¿Ö±×·¯ÁÒ.. 

* ÄÁÅÙÃ÷ Ãâó : ÀÛ¼ºÀÚ º»ÀÎ
±âºÎ Ãßõ ¹Ý´ë ½Å°í
ÃßõµÇ¾ú½À´Ï´Ù.

¡ã ´ÙÀ½±Û SI¾÷°è¿¡¼­ ÀÏÇÏ´Â »ç¶÷? ÀÌÀڷḸ4¹øº½ 0 0 5 319 2018-03-21 [17:02]
¡å ÀÌÀü±Û À¯´ÏƼ Áú¹®ÀÌ¿ä ¤Ð¤Ð ¾¾´ÏÄ«¸ð¹ß¸ð¹ß 0 0 0 158 2018-03-16 [23:16]
´ä±Û¸¶´ç (2)
ÀÌÀڷḸ4¹øº½
class="btn" ÀÌ ÇÊ¿äÇÑ ºÎºÐÀÓ?
00 Ãßõ Ãßõ ¹Ý´ë ¹Ý´ë ½Å°í ½Å°í ´ä±Û ´ä±Û 2018-03-21 17:04:55
ij³ª´Ù»Í¸ÂÀº»õ³¢
maxlength µÇ´Â°Å°°Àºµ¥
00 Ãßõ Ãßõ ¹Ý´ë ¹Ý´ë ½Å°í ½Å°í ´ä±Û ´ä±Û 2018-03-22 05:26:06
»ó´ë¹æ¿¡ ´ëÇÑ ¹è·Á´Â ³×ƼÄÏÀÇ ±âº»ÀÔ´Ï´Ù.°Ô½Ã¹°¿¡ »ó°ü¾ø´Â ´ä±ÛÀ̳ª ÃßõÀ¯µµ¼º ´ä±ÛÀ» ´ÞÁö ¸¶¼¼¿ä.
½ºÆ÷ÀÏ·¯¼º ´ä±ÛÀÌ ½Å°íµÇ°Å³ª ¹ß°ßµÇ¸é ÀÌÀ¯ºÒ¹® »èÁ¦ ȤÀº Á¤ÇÐó¸® µË´Ï´Ù. À¯ÀÇ ºÎŹ µå¸³´Ï´Ù.
´ä±Û¾²±â
ÇÑ±Û 512ÀÚ
·Î±×ÀÎ
[°øÁö] ¨ç ¿ô±ä´ëÇÐÀÇ ¿î¿µ¸ñÀûÀº "³²À» ÇູÇÏ°Ô ¸¸µé¾îÁÖ±â" ÀÔ´Ï´Ù. ¾Ç¼º´ä±Û, »óóÁÖ´Â ´ä±Û, À½¶õ ´ä±ÛÀ» ÀÛ¼ºÇÏÁö ¸»¾Æ ÁÖ¼¼¿ä.
¨è ³»°¡ ¿Ç´Ù°í ÇÏ´õ¶óµµ Á¶¿ëÈ÷ ½Å°í¸¸ ÇÏ½Ã°í »ó´ë¹æÀ» ºñ³­ÇÏ´Â ±ÛÀ» ¾²Áö´Â ¸¶¼¼¿ä. À̰÷Àº ¿Ç°í ±×¸§À» °¡¸®´Â °÷ÀÌ ¾Æ´Õ´Ï´Ù.
¨é Áö¼ÓÀûÀ¸·Î ºÐ¶õÀ» ÀÏÀ¸Å°´Â ȸ¿øÀº ¿Ç°í ±×¸§À» ¸··ÐÇϰí Á¤ÇРȤÀº Â÷´ÜÁ¶Ä¡µË´Ï´Ù.
¨ê Á¤Ä¡ ÀÚ·á, ³²³à ºÐ¶õ ÀÚ·á, Àú°Ý ÀÚ·á, ºÐ¶õ ¾ß±â °Ô½Ã¹°Àº °­·ÂÇÏ°Ô Á¦ÀçÇÕ´Ï´Ù. ÀÚ¼¼È÷º¸±â
¡ã ´ÙÀ½±Û SI¾÷°è¿¡¼­ ÀÏÇÏ´Â »ç¶÷? ÀÌÀڷḸ4¹øº½ 0 0 5 319 2018-03-21 [17:02]
¡å ÀÌÀü±Û À¯´ÏƼ Áú¹®ÀÌ¿ä ¤Ð¤Ð ¾¾´ÏÄ«¸ð¹ß¸ð¹ß 0 0 0 158 2018-03-16 [23:16]
¸ñ·Ï
Áú¹®¿¡´äº¯Çϱâ
URL º¹»ç
½ºÅ©·¦
¸ÇÀ§·Î

¡ç CTRL+C ·Î º¹»çÇϰí CTRL+V ·Î ºÙ¿©³ÖÀ¸¼¼¿ä!