An open API service indexing awesome lists of open source software.

https://github.com/grimmdude/jquery-menuflip

Create animated flipping menu links with this extremely lightweight jQuery plugin.
https://github.com/grimmdude/jquery-menuflip

animation jquery jquery-menuflip menu navigation

Last synced: about 2 months ago
JSON representation

Create animated flipping menu links with this extremely lightweight jQuery plugin.

Awesome Lists containing this project

README

        

jQuery menuFlip
===============

Create flipping menu links with this extremely lightweight jQuery plugin.

##Usage
HTML:
```html


```
You can optionally specify the text you want to use for the flipped menu item using the `data-flipped-text` attribute in each link:
```html
  • Link 1

  • ```

    JS:
    ```js
    $('#menuFlip').menuFlip({
    li_height : '20px',
    flip_speed : 150,
    flipped_class : 'flipped_item',
    mouseover : function() {},
    mouseout : function() {}
    });
    ```