Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>follow mouse
</title>
<script type="text/javascript">
var Follow = function () {
var $ = function (i) {
return document.getElementById(i)}
,
addEvent = function (o, e, f) {
o.addEventListener ? o.addEventListener(e, f, false) : o.attachEvent('on'+e, function(){
f.call(o)}
)}
OBJ = [], sp, rs, N = 0, m;
xxxxxxxxxx
html {
overflow: hidden;
}
body {
position: absolute;
height: 100%;
width: 100%;
margin:0;
padding:0;
#screen {
background:#000;
#screen span {
background: #fff;
font-size: 0;
width: 2px;
height: 2px;
JS代码...