Created
September 7, 2013 09:47
-
-
Save mamuso/6474274 to your computer and use it in GitHub Desktop.
A Pen by mamuso.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="monster"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var addEye = function(ebRadius, irRadius, x, y, offset, parent) { | |
var a, apx, apy, mx, my, eb, ir, | |
eid = "eb_" + new Date().valueOf(), | |
rr = ebRadius - irRadius - offset; | |
function build() { | |
drawEye(); | |
document.addEventListener("mousemove", mouseMove, true); | |
} | |
function dummy() { | |
console.log("dummy"); | |
} | |
function drawEye() { | |
p = document.getElementById(parent) || document.body; | |
// Eyeball | |
eb = document.createElement("div"); | |
eb.id = eid; | |
eb.className = "eb"; | |
eb.style.borderRadius = ebRadius + "px"; | |
eb.style.left = (x - ebRadius) + "px"; | |
eb.style.top = (y - ebRadius) + "px"; | |
eb.style.width = eb.style.height = (ebRadius * 2) + "px"; | |
p.appendChild(eb); | |
// Iris | |
ir = document.createElement("div"); | |
ir.className = "ir"; | |
ir.style.borderRadius = irRadius + "px"; | |
ir.style.left = (x - irRadius) + "px"; | |
ir.style.top = (y - irRadius) + "px"; | |
ir.style.width = ir.style.height = (irRadius * 2) + "px"; | |
p.appendChild(ir); | |
apx = x; // TODO | |
apy = y; // TODO | |
} | |
function mouseMove(e) { | |
console.log(e) | |
e.x = e.x || e.clientX; | |
e.y = e.y || e.clientY; | |
a = Math.atan2(e.y - apy, e.x - apx); | |
if(dist(apx, apy, e.x, e.y) < rr) { | |
ir.style.left = e.x - irRadius + "px" | |
ir.style.top = e.y - irRadius + "px" | |
} else { | |
ir.style.left = apx - irRadius + (Math.cos(a) * rr) + "px" | |
ir.style.top = apy - irRadius + (Math.sin(a) * rr) + "px" | |
} | |
} | |
function dist(x1, y1, x2, y2) { | |
return(Math.sqrt(Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2))); | |
} | |
build(); | |
}; | |
window.onload = function(e) { | |
new addEye(56, 12, 278, 285, 2, "monster"); | |
new addEye(27, 8, 186, 312, 2, "monster"); | |
new addEye(16, 5, 198, 256, 2, "monster"); | |
new addEye(21, 6, 159, 235, 2, "monster"); | |
new addEye(41, 9, 204, 178, 2, "monster"); | |
new addEye(22, 6, 277, 193, 2, "monster"); | |
new addEye(22, 7, 326, 157, 2, "monster"); | |
new addEye(32, 9, 353, 215, 2, "monster"); | |
new addEye(14, 4, 398, 258, 2, "monster"); | |
new addEye(30, 7, 373, 306, 2, "monster"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background: #132837; | |
} | |
.eb { | |
position: absolute; | |
background: white; | |
} | |
.ir { | |
position: absolute; | |
background: #0c1b23; | |
-webkit-transform: translate3d( 0px, 0px, 0px ); | |
-moz-transform: translate3d( 0px, 0px, 0px ); | |
-ms-transform: translate3d( 0px, 0px, 0px ); | |
transform: translate3d( 0px, 0px, 0px ); | |
} | |
#monster { | |
position: relative; | |
display: block; | |
width: 500px; | |
height: 500px; | |
background: url("http://f.cl.ly/items/1n2v2W04241C1n0h093s/monsterbase.png") no-repeat center center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment