Code Monkey home page Code Monkey logo

Comments (6)

chrisdivyak avatar chrisdivyak commented on May 30, 2024

You can do it by changing the init() function parameters to 'mouseover' instead of 'click.'

function init() {
        $menuItems.on( 'mouseover', open );
        $listItems.on( 'click', function( event ) { event.stopPropagation(); } );
    }

from blueprint-horizontaldropdownmenu.

Maby avatar Maby commented on May 30, 2024

Hi, is there a possibility to have some delay before the hover effect?
I don't want to the menu hover appear by mistake

from blueprint-horizontaldropdownmenu.

chrisdivyak avatar chrisdivyak commented on May 30, 2024

Yes, you can add a setTimeout function after the open function. Replace the function open(event){...} with the following:

function open( event ) {
    setTimeout(function(){
        if( current !== -1 ) {
            $listItems.eq( current ).removeClass( 'cbp-hropen' );
        }
        var $item = $( event.currentTarget ).parent( 'li' ),
            idx = $item.index();
        if( current === idx ) {
            $item.removeClass( 'cbp-hropen' );
            current = -1;
        }
        else {
            $item.addClass( 'cbp-hropen' );
            current = idx;
            $body.off( 'click' ).on( 'click', close );
        }
        return false;
    }, 500);
}

from blueprint-horizontaldropdownmenu.

Maby avatar Maby commented on May 30, 2024

Works fine, thank you for your rapid answer ;)

from blueprint-horizontaldropdownmenu.

unatalandrea avatar unatalandrea commented on May 30, 2024

Hi, can I close menu on mouseleave or mouseout?

from blueprint-horizontaldropdownmenu.

chrisdivyak avatar chrisdivyak commented on May 30, 2024

You should be able to do this by just adding to the init() function and appending a new variable for the nav. I tested it and it seems to work.

var $listItems = $( '#cbp-hrmenu > ul > li' ),
      $menuItems = $listItems.children( 'a' ),
      $body = $( 'body' ),
      $nav = $( 'nav' ),
      current = -1;
	function init() {
		$menuItems.on( 'mouseover', open );
		$nav.on('mouseleave', close);
		$listItems.on( 'click', function( event ) { event.stopPropagation(); } );
	}

from blueprint-horizontaldropdownmenu.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.