Advertisement
Guest User

main_script.js

a guest
Jan 21st, 2017
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. $("#test").load('header.html');
  2.  
  3. /* Logos area hover animation */
  4. $("#logo_container").hover(
  5. function() {
  6. $("#logo_vertical_separator").animate(
  7. {
  8. height: "100%" },
  9. {
  10. duration: 150,
  11. easing: 'linear'
  12. }
  13. );
  14. }, function() {
  15. $("#logo_vertical_separator").animate(
  16. {
  17. height: "80%" },
  18. {
  19. duration: 150,
  20. easing: 'linear'
  21. }
  22. );
  23. }
  24. );
  25. /* Logos area hover animation */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement