1.2.0 • Published 7 years ago

peak-menu v1.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

#CMENU ###Jquery Plugin for Customizable menu for responsive sites.

##DEMO Check out Demo fiddle Here: https://jsfiddle.net/biholaindrasinh/s0jyzrtw/17/embedded/result/

##DEPENDENCES This plugin tested on jquery-1.11.3.js, cmenu.css and it requires font-awesome.css for submenu right arrow and toggle bars icons.

##DOWNLOAD To download this plugin click here: http://biholaindrasinh.github.io/cmenu/

##INITIALIZATION Simply Initialize plugin like other jquery plugins

    $(function () {
        $('selector').cmenu();
    });

##OPTIONS width

Default:'100%'

Width Example

    $('selector').cmenu({width:'200px'});

BgColor

Default:'grey'

Container Background Color Example

    $('selector').cmenu({BgColor:'#00FF00'});

togglePosition

Default:'left'

Toggle Button Position Example

    $('selector').cmenu({togglePosition:'right'});

You can pass multiple options in cmenu plugin.

    $('selector').cmenu({width: '50%', BgColor: 'magenta', togglePosition: 'left'});