swarley

yes??!?!?!!!?!?!?

Dec 22nd, 2011
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.addEventListener('DOMContentLoaded', hook);
  2.  
  3. function hook() {
  4.     document.elementById('logo_text').addEventListener('mouseover', mouseover);
  5.     document.elementById('logo_text').addEventListener('mouseoff', mouseoff);
  6. }
  7.  
  8. function mouseover() {
  9.     document.elementById('logo_text').tween('height', '300px');
  10. }
  11.  
  12. function mouseoff() {
  13.     document.elementById('logo_text').tween('height', '0px');
  14. }
Add Comment
Please, Sign In to add comment