简体   繁体   中英

Extract mobile menu from responsive menu

i'm working with this menu: http://jsfiddle.net/4Q29m/ But i want to extract only the mobile menu, i want to display only the mobile menu, not the menu for PC and large resolutions.

How can i do?

I don't know if I understand correctly your question and if this will help you
But if you want only the mobile part of that menu this is my fiddle .
If you want the menu extends itself over all sceen you have to remove one selector after my comment in css code (see fiddle page).
This is just a simple example, I hope it can help you.
in javascript part i have change the adaptMenu function:

function adaptMenu() {
    $('.rmm').each(function() {
            var $width = $(this).css('max-width');
            $width = $width.replace('px', ''); 
                $(this).children('.rmm-toggled').show(0);
        });

}

If this solution does not suit your needs, i apologize for making you lose time.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM