Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function mouseCircle(e){
  2.  
  3. document.getElementById("circle").style.top = String(e.pageY -25) + "px";
  4. document.getElementById("circle").style.left = String(e.pageX -25) + "px";
  5. document.getElementById("circle").style.display = "block";
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement