SHIFT + F
<html>
<head>
</head>
<body>
<script>
<!--
function callDic(){
if (event.shiftKey) {
if (event.keyCode == 70) {
var w=window.open('http://oxtag.com,'tagpia','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=600,height=350&COMM_001=0000100000');
w.focus();
}
}
}
document.onkeydown=callDic;
//-->
</script>
SHIFT + F 를 누르면 새창이 열려요;;;
</body>
</html>
ALT + F4
<html>
<head>
</head>
<body>
<script>
<!--
function callDic(){
if (event.altKey) {
if (event.keyCode == 115) {
var w=window.open('http://oxtag.com','tagpia','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=600,height=350');
w.focus();
}
}
}
document.onkeydown=callDic;
//-->
</script>
ALT + F4 를 누르면 새창이 열려요;;;
</body>
</html>
키코드는 아래 URL 참고..
http://oxtag.com/html/ex/keycode3.html
반응형
'인터넷정보' 카테고리의 다른 글
다익스트라(Dijkstra) 알고리즘 (0) | 2007.10.17 |
---|---|
다익스트라(Dijkstra) 알고리즘 (0) | 2007.10.17 |
TV, 영화에 사용된 폰트 (0) | 2007.10.17 |
TV, 영화에 사용된 폰트 (0) | 2007.10.17 |
키보드 눌러서 새창띄우기 (0) | 2007.10.17 |
페이지 이동 스크립트 (0) | 2007.10.17 |
페이지 이동 스크립트 (0) | 2007.10.17 |
앞으로, 뒤로 가기를 마우스 휠로. (0) | 2007.10.17 |
앞으로, 뒤로 가기를 마우스 휠로. (0) | 2007.10.17 |
프레임 화면이 아닌 페이지 접근시 차단이나 다른 페이지로 이동 (0) | 2007.10.17 |