Snippets

John Baxter Kbe7: Untitled snippet

Created by John Baxter
var hoverTimeout,
                $navBg = $('.nav-bg');

        $('.sf-menu > li').hover(function() {
            clearTimeout(hoverTimeout);
            $navBg.stop().animate({ opacity: 1 }, 'fast');
        }, function() {
            hoverTimeout = setTimeout(function() {
                $navBg.stop().animate({ opacity: 0 }, 'fast');
            }, 1200);

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.