Skip to content
This repository has been archived by the owner on Feb 18, 2020. It is now read-only.
/ jPanelMenu Public archive

A jQuery plugin that creates a paneled-style menu (like the type seen in the mobile versions of Facebook and Google, as well as in many native iPhone applications).

Notifications You must be signed in to change notification settings

acolangelo/jPanelMenu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

#jPanelMenu

jPanelMenu is a jQuery plugin that creates a paneled-style menu (like the type seen in the mobile versions of Facebook and Google, as well as in many native iPhone applications).

Check out the demo (and documentation) site to see it in action.

#How Do I Use This Thing?

Start off by including the jPanelMenu.js file in your page. (Bonus points for using the minified version [jPanelMenu.min.js], or for bundling the jPanelMenu code into your own JavaScript file to reduce size and HTTP requests.)

Build your page as you normally would (the source order does not matter), and instantiate jPanelMenu by calling the plugin constructor function.

var jPM = $.jPanelMenu();

By default, jPanelMenu will look for an element with an ID of menu to use as the menu, and elements with a class of menu-trigger to use as the trigger(s). Either use these IDs and classes on your elements, or pass a custom selector string pointing jPanelMenu to your menu and trigger elements in an object into the constructor function call, as follows:

var jPM = $.jPanelMenu({
	menu: '#custom-menu-selector',
	trigger: '.custom-menu-trigger-selector'
});

Note: Check out the options section for more customizable goodness like the above.

After jPanelMenu has been instantiated (make sure to save the returned object to a variable, as shown above), it’s time to turn it on!

jPM.on();

After that, jPanelMenu will be functioning, and that’s it!

If you want to take things to the next level, keep reading.

#How Does This Thing Work?

When jPanelMenu is turned on, two <div> elements are created. The menu element (with an ID of jPanelMenu-menu, and the panel element (with a class of jPanelMenu-panel). In addition, a class of jPanelMenu is applied to the <html> tag.

The menu, #jPanelMenu-menu, contains the elements targeted by the menu selector passed into the jPanelMenu constructor function. The targeted menu element is cloned into #jPanelMenu-menu, and is not removed from its original position in the DOM, it is only hidden (using display: none).

The panel, .jPanelMenu-panel, contains all of the content in the <body> element (except for the elements specified by the excludedPanelContent option). The selected content is moved, not cloned, into .jPanelMenu-panel.

To style or select the menu, use the following selector: #jPanelMenu-menu.

To style or select the content panel, use the following selector: .jPanelMenu-panel.

When jPanelMenu is turned off, the two <div> elements are removed, all of the content inside .jPanelMenu-panel is moved back into the <body> element, and the class of jPanelMenu is removed from the <html> tag.

#Does It Animate?

Of course! (If you want it to, there’s an option for that.)

Animation is handled by CSS transitions, for browsers with support. CSS transitions are hardware-accelerated on supporting devices, so the animations are silky smooth.

For browsers that do not support CSS transitions, the jQuery animation engine is used as a fallback.

#Options

The following options can be set via an object passed into the constructor function call.

var jPM = $.jPanelMenu({
	// options...
});

###menu

A selector string pointing to the desired menu element.

  • Data Type: string
  • Default Value: #menu

###trigger

A selector string pointing to the menu-triggering element.

  • Data Type: string
  • Default Value: .menu-trigger

###excludedPanelContent

A selector string specifying which tags within the <body> element should not be pushed into .jPanelMenu-panel.

Generally, <style> and <script> tags should not be moved from their original location, but in certain circumstances (mostly advertising), <script> tags may need to move with the page content.

  • Data Type: string
  • Default Value: style, script

###openPosition

The measurement value for the open position of the menu. Can be set as a pixel, percentage, or em value.

  • Data Type: string
  • Examples: 250px, 75%, 20em
  • Default Value: 250px

###animated

A boolean value specifying whether or not the opening and closing of the menu should be animated.

When using the API functions open(), close(), and trigger(), this setting can be overridden by passing in true as the parameter. More info in the API section.

  • Data Type: boolean
  • Accepted Values: true or false
  • Default Value: true

###keyboardShortcuts

An option that allows you to control if keyboard shortcuts are enabled, and if they are, which keys do what.

Setting this option to false will disable keyboard shortcuts entirely. To enable keyboard shortcuts, pass in an array of objects. Each enabled key gets its own object in the array and each object should be structured as follows:

{
	code: Keycode of enabled key,
	open: Boolean value (true or false), specifying whether or not this key should open the menu,
	close: Boolean value (true or false), specifying whether or not this key should close the menu
}
  • Data Type: array or boolean

  • Accepted Values: array or false

  • Default Value:

      [
      	{
      		code: 27, /* Escape Key */
      		open: false,
      		close: true 
      	},
      	{
      		code: 37, /* Left Arrow Key */
      		open: false,
      		close: true 
      	},
      	{
      		code: 39, /* Right Arrow Key */
      		open: true,
      		close: true 
      	},
      	{
      		code: 77, /* M Key */
      		open: true,
      		close: true 
      	}
      ]
    

###duration

The time, in milliseconds, which it should take to open and close the menu, when animated.

  • Data Type: int
  • Default Value: 150

###openDuration

The time, in milliseconds, which it should take to open the menu, when animated. If set, this overrides the duration option.

  • Data Type: int
  • Default Value: Inherited from duration

###closeDuration

The time, in milliseconds, which it should take to close the menu, when animated. If set, this overrides the duration option.

  • Data Type: int
  • Default Value: Inherited from duration

###easing

The easing function to use when animating the opening and closing of the menu.

  • Data Type: string
  • Accepted Values: linear, ease, ease-in, ease-out, ease-in-out
  • Default Value: ease-in-out

###openEasing

The easing function to use when animating the opening of the menu. If set, this overrides the easing option.

  • Data Type: string
  • Accepted Values: linear, ease, ease-in, ease-out, ease-in-out
  • Default Value: Inherited from easing

###closeEasing

The easing function to use when animating the closing of the menu. If set, this overrides the easing option.

  • Data Type: string
  • Accepted Values: linear, ease, ease-in, ease-out, ease-in-out
  • Default Value: Inherited from easing

###before

Called before the menu is opened or closed, regardless of animation state.

  • Data Type: function
  • Default Value: function(){ }

###beforeOpen

Called before the menu is opened, regardless of animation state.

  • Data Type: function
  • Default Value: function(){ }

###beforeClose

Called before the menu is closed, regardless of animation state.

  • Data Type: function
  • Default Value: function(){ }

###after

Called after the menu is opened or closed, regardless of animation state.

  • Data Type: function
  • Default Value: function(){ }

###afterOpen

Called after the menu is opened, regardless of animation state.

  • Data Type: function
  • Default Value: function(){ }

###afterClose

Called after the menu is closed, regardless of animation state.

  • Data Type: function
  • Default Value: function(){ }

#API

The following are the methods and properties of the object returned by the jPanelMenu constructor function call. In the following example, these would be the methods and properties of jPM.

var jPM = $.jPanelMenu();

jPM.on();

jPM.trigger(true);

###on( )

Initializes a jPanelMenu instance. Sets up the markup, styles, listeners, and interactions, according to the options passed into the constructor function.

  • Returns: null

###off( )

Destroys a jPanelMenu instance. Resets the markup and styles, removes listeners and interactions.

  • Returns: null

###trigger( animated )

Triggers the opening or closing of the menu, depending on the current state (open or closed).

  • Parameters
    • animated
      • A boolean value that determines whether or not to animate the action. The action will animate if animated is true, and will not animate if animated is false. If no value is passed in, the action will not be animated.
      • Data Type: boolean
      • Accepted Values: true, false
  • Returns: null

###open( animated )

Triggers the opening of the menu.

  • Parameters
    • animated
      • A boolean value that determines whether or not to animate the action. The action will animate if animated is true, and will not animate if animated is false. If no value is passed in, the action will not be animated.
      • Data Type: boolean
      • Accepted Values: true, false
  • Returns: null

###close( animated )

Triggers the closing of the menu.

  • Parameters
    • animated
      • A boolean value that determines whether or not to animate the action. The action will animate if animated is true, and will not animate if animated is false. If no value is passed in, the action will not be animated.
      • Data Type: boolean
      • Accepted Values: true, false

###isOpen( )

Checks the current state of the menu. Returns true if the menu is currently open, and false if it is closed.

  • Returns: boolean, true or false

###menu

A property equal to the raw selector string of the created menu object.

  • Data Type: string

###getMenu( )

Returns a jQuery Object containing the created menu object.

  • Returns: jQuery Object

###panel

A property equal to the raw selector string of the created panel object.

  • Data Type: string

###getPanel( )

Returns a jQuery Object containing the created panel object.

  • Returns: jQuery Object

#Tips, Best Practices, and Other Good Ideas

###Progressive Enhancement

Users without JavaScript (whether they have turned it off, or are using a device without it) will obviously not get the interactions provided by jPanelMenu. It’s a good idea to take a “progressive enhancement” approach, and build your site to work without JavaScript and jPanelMenu.

A great way to do this is to use the hooks provided to you by jPanelMenu.

A good way to do that is to have your site’s basic CSS display and style the navigation (or whatever is the content of your jPanelMenu) in an appropriate way, and use JavaScript to apply any styles that are specific to the JavaScript-enabled implementation (maybe have your site’s JavaScript write out a <style> tag).

###jPanelMenu and jRespond — Perfect Together

I'm a huge fan of jRespond, which is “a simple way to globally manage JavaScript on responsive websites.”

jRespond and jPanelMenu are the perfect couple — use jRespond to enable and disable jPanelMenu at the appropriate breakpoints, creating a truly great experience. That’s how I almost always use jPanelMenu (that’s how the documentation/demo site works), and I suggest you give it a shot, too.

Responsive design is awesome on its own, but add responsive behavior to the mix, and you’ve made something incredible.

#Questions, Comments, Insults, or Other Feedback?

Send me a message, let’s talk.

About

A jQuery plugin that creates a paneled-style menu (like the type seen in the mobile versions of Facebook and Google, as well as in many native iPhone applications).

Resources

Stars

Watchers

Forks

Packages

No packages published