With Casino770 players know they will not risk playing games on the room because the site covers the casino free bonus!
The Ashes
Technology, Science and other news
June 26, 2009
Fun with text-shadow
Filed under : General

Zach Johnson is at it again, this time giving us a fun Friday treat with CSS text shadow, all via:
JAVASCRIPT:
-
-
document.getElementById(‘text-shadow-box’).onmousemove = function(e) {
-
var xm = e.clientX – 300;
-
var ym = e.clientY – 175;
-
var d = Math.sqrt(xm*xm + ym*ym);
-
text.style.textShadow = -xm + ‘px ‘ + -ym + ‘px ‘ + (d / 5 + 10) + ‘px black’;
-
-
xm = e.clientX – 600;
-
ym = e.clientY – 450;
-
spot.style.backgroundPosition = xm + ‘px ‘ + ym + ‘px’;
-
}
-
Tags :
No Comments