Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $("#test").load('header.html');
- /* Logos area hover animation */
- $("#logo_container").hover(
- function() {
- $("#logo_vertical_separator").animate(
- {
- height: "100%" },
- {
- duration: 150,
- easing: 'linear'
- }
- );
- }, function() {
- $("#logo_vertical_separator").animate(
- {
- height: "80%" },
- {
- duration: 150,
- easing: 'linear'
- }
- );
- }
- );
- /* Logos area hover animation */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement