JavaScript.CoolDev.Com is home of the best JavaScript drop down menu, JavaScript tree and outlook bar
JavaScript.CoolDev.Com is home of the best JavaScript drop down menu, JavaScript tree and outlook bar
JavaScript.CoolDev.Com is home of the best JavaScript drop down menu, JavaScript tree and outlook bar
COOLjsMenu Samples

Standard:

item sizing
item positioning
border & pseudo-shadow
multiple levels
styles & colors
multiple instances
tips and status bar
IE filters
IE transitions

Professional:

popups
cross-frame
relative positioning
icons
arrows
advanced borders
z-index

Graphically Rich:

Demo 1
Demo 2
Demo 3
Demo 4
Demo 5
Demo 6
Demo 7
Demo 8
Demo 9

COOLjsMenu - JavaScript menu: order now!

Rate It!

If you like COOLjsMenu
vote for it!

ScriptSearch.com

HotScripts.com

Internet Explorer's transitions

With Microsoft Internet Explorer you can use filters to add special animation effects to your menu (other browsers will silently skip these effects):

sub:[
    {levelFilters:[ 'progid:DXImageTransform.Microsoft.Pixelate(duration=0.3)',
        'progid:DXImageTransform.Microsoft.Fade(duration=0.3)' ]},
    {code:'Item 1'},
    {code:'Item 2'},
    {code:'Item 3'}
]

In the sample above two animations were specified: "Fade" for "out to over" state transition, and "Pixelate" for "over to out" state transition. If you're going to use same animation for both transitions, you can use a short notation:

sub:[
    {levelFilters:'progid:DXImageTransform.Microsoft.Fade(duration=0.3)'},
    {code:'Item 1'},
    {code:'Item 2'},
    {code:'Item 3'}
]

Transitions can be combined with filters.

For more information on filters and transitions, please read this article at MSDN: Introduction to Filters and Transitions.