Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  4. <script>
  5.  
  6. $(document).ready(function(){
  7. $(document).mousemove(function(e){
  8. $('img').css('left',e.pageX+"px");
  9. $('img').css('top',e.pageY+"px");
  10. });
  11. });
  12.  
  13. function setBg(){
  14. var textBox = document.getElementById('tb').value;
  15. var myElement = document.querySelector("body");
  16. alert(textbox);
  17. myElement.style.backgroundImage = "url('" + textbox + "')";
  18. }
  19.  
  20. </script>
  21. <style>
  22. img {
  23. position: absolute;
  24. transform: translate(-50%, -50%);
  25. }
  26.  
  27. </style>
  28.  
  29. </head>
  30. <body>
  31. <input id="tb" type="text" onkeypress="setBg()" />
  32. <img src="spotlight_bg.png" alt="" />
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement