Plugins
Plugins - Sliding Menus
This is a spectacular new feature (available starting in version 3.2) that will make you rub your eyes in disbelief that it isn't a proprietary feature of your browser. Nope: This one works in ALL browsers!
For a truly spectacular effect, try coupling submenu fading with clipTrans! The second submenu on this page has both submenu fading and clipTrans.

Select in transition:
Select out transition:
Type duration: (milliseconds)
Type frames:
Dependencies
To make this transition work, you must include one JavaScript libary found in the js/ directory. As of WebDDM 3.4, sliding menus are no longer core to WebDDM - it is a plugin. However, implementation is exactly the same on your side. Your code should look something like this if you need to use this transition:
<script src="../js/core.WebDDM.compressed.js"></script>
<script src="../js/clipTrans.WebDDM.compressed.js">
	<!-- For WebDDM sliding/clipping transitions -->
</script>
The code
The configuration for sliding menus (aka clipTrans) is very similar to menu fading configuration. The internal system is also very similar but we won't get into that here.
Here's how to configure your menu to work with clipTrans:
'items':{
	/* clipTrans configuration */
	'clipTrans':{
		'duration':1000, // Time (in milliseconds) it takes to complete the transition
		'frames':15, // The number of frames in the transition animation
		'transition':'transitionName' // Name of the transition to use 
	},
	// Other stuff...
}
Optionally, you can specify 'transitionIn' and 'transitionOut' instead of 'transition'.

clipTrans has several transitions you can use. Simply put one of the following names as the value of the 'transition' attribute to see exactly how it works: Note that the above list assumes that the submenu is becoming visible. If the submenu is being hidden, the effect is the same but "opposite": instead of one side being the first to become visible, it is the first side or corner to become invisible. Just test it out, you'll see :)
View Source
View CSS file - View JavaScript file.
Plugins
Plugins: Last - Next