Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. document.getElementById("diggoo").addEventListener("onmousemove",function(){
  2. document.getElementById("diggoo").innerHTML+="</br>diggoo";
  3. document.body.style.backgroundColor=randomColor();
  4. });
  5. function randomColor(){
  6.  var c = '';
  7.  while (c.length < 7) {
  8.    c += (Math.random()).toString(16).substr(-6).substr(-1)
  9.  }
  10.  return '#'+c;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement