http://oxtag.com/html/ex/keystroke.html
<SCRIPT LANGUAGE="JavaScript">
<!--
// 소스 : http://www.happyscript.net
var SpecialWord = "tagpia", // 단어
SpecialUrl = "./error_message.html", // URL
SpecialLetter = 0;
function getKey(keyStroke) {
var isNetscape=(document.layers);
var eventChooser = (isNetscape) ? keyStroke.which : event.keyCode;
var which = String.fromCharCode(eventChooser).toLowerCase();
if (which == SpecialWord.charAt(SpecialLetter)) {
SpecialLetter++;
if (SpecialLetter == SpecialWord.length) window.location = SpecialUrl;
}
else SpecialLetter = 0;
}
document.onkeypress = getKey;
//-->
</script>
<Br><br>
<font style=font-size:9pt;>
"<font color=red>tagpia</font>"를 타이핑 해보세요.<br>
그럼 연결된 URL로 이동됨니다.<br>
놀라지 마세요. 연결한 페이지는 장난...
</font>
반응형
'인터넷정보' 카테고리의 다른 글
항상 화면의 중간에 새창 띠우기 (0) | 2007.10.17 |
---|---|
원 클릭으로 클립보드에 복사하기(우측 태그피아 배너) (0) | 2007.10.17 |
원 클릭으로 클립보드에 복사하기(우측 태그피아 배너) (0) | 2007.10.17 |
textarea 늘리기/줄이기 (0) | 2007.10.17 |
textarea 늘리기/줄이기 (0) | 2007.10.17 |
keystroke - 지정한 텍스트 타이핑시 연결된 URL로 이동 (0) | 2007.10.17 |
fade in/out (0) | 2007.10.17 |
fade in/out (0) | 2007.10.17 |
페이지 로딩될때 준비한 메시지 로딩시까지 보여주기 - 로딩바 (0) | 2007.10.17 |
페이지 로딩될때 준비한 메시지 로딩시까지 보여주기 - 로딩바 (0) | 2007.10.17 |