Quantcast
Channel: OXID Community Forum
Viewing all articles
Browse latest Browse all 6951

Mouseover bei der Variantenauswahl?

$
0
0
Hallo,

bis jetzt ist es so, dass mit der Maus auf die Variantenauswahl geklickt werden muss, damit es öffnet.
Gibt es eine Möglichkeit, wenn man über die Variantenauswahl mit dem Mauszeiger fährt, dass sich dann das Menü aufklappt (mouseover/mouseout)?

Bei der Anmelden Box funktioniert es zum Beispiel so:

Code:

( function( $ ) {

    oxLoginBox = {

        _create: function(){

                        var self = this,
                        options = self.options,
                        el      = self.element;
                       
                        el.on('mouseenter', function(e) {
                                        $("#loginBox").show();
                        });
                       
                        $("#loginBox").on('mouseleave', function( e ){
                                setTimeout(function(){
                                        $("#loginBox").hide();
                                }, 1000);
                        });
        }
    }

    $.widget( "ui.oxLoginBox", oxLoginBox );

} )( jQuery );

Könnt ihr mir helfen wie ich es in der Varianten-Box machen muss?

Grüße,

Attached Images
File Type: jpg varianten_dropdown.jpg (85.1 KB)

Viewing all articles
Browse latest Browse all 6951

Trending Articles