Want to turn your web browser into a spaceship battleground? This fun trick lets you blast away at web pages using a tiny mouse-controlled ship!
Simply paste the following JavaScript code into your browser's address bar and press Enter. A triangular spaceship will appear in the top left corner.
Controls:
Destroy Your Favorite (or Least Favorite!) Websites!
Here's the code. Try the first option first; if it doesn't work, try the second.
javascript:var%20s%20=%20document.createElement('script');s.type='text/javascript';document.body.appendChild(s);s.src='http://erkie.github.com/asteroids.min.js';void(0);
Alternative (jQuery):
jQuery(document).ready( function() { jQuery.getScript('http://erkie.github.com/asteroids.min.js'); });
Have fun obliterating those websites!
The above is the detailed content of Awesome jQuery Space Mouse DOM Shooter. For more information, please follow other related articles on the PHP Chinese website!