/ Published in: Other
Expand |
Embed | Plain Text
// Sliding About content var currentPosition = 0; var slideWidth = 340; // content width // Show hidden box $('#aboutBox') // id/class of content .css({ 'overflow': 'hidden', 'left' : -slideWidth + 'px', 'display' : 'none' }) // Animate show/hidden cotent box .find('a.close').bind('click', function(){ $('#aboutBox') .animate({ 'left': -slideWidth + 'px', }, 500, function(){ $(this).css('display', 'none'); }); return false; }); $('.extras li a').bind('click', function() { $('#aboutBox') .css('display', 'block') .animate({ 'left': 0, }); return false; });
You need to login to post a comment.
