Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var width, height, divObj, interval;
- var l, t, r, b;
- function setup() {
- width = window.innerWidth;
- height = window.innerHeight;
- interval = setInterval(loadDiv, 50);
- }
- document.onmousemove=getMouseCoordinates;
- function getMouseCoordinates(event) {
- ev = event || window.event;
- l = ev.pageX; t = ev.pageY;
- r = width - l; b = height - t;
- divObj.innerHTML = '<div style="position: absolute; left: 20px;">.class {<br> position: absolute;<br> left: ' + l + 'px;<br> top: ' + t + 'px;<br>}</div><div style="position: absolute; left: 250px;">.class {<br> position: absolute;<br> right: ' + r + 'px;<br> bottom: ' + b + 'px;<br>}</div>';
- }
- function loadDiv() {
- divObj = document.getElementById("divPlacement");
- }
- document.write('<div id="divPlacement" style="position: absolute; right: 25px; bottom: 25px; color: #fff; font-family: monospace; background-color: #000; opacity:0.4; filter:alpha(opacity=40); -webkit-border-radius: 5px;-moz-border-radius: 5px; border-radius: 5px; padding: 10px; width: 420px; height: 80px; border: solid #ccc;"></div>');
- setup();
Add Comment
Please, Sign In to add comment