vote up 0 vote down star

I need to make a mouseover menu that opens diagonally (from top-left to bottom-right).

flag

2 Answers

vote up 0 vote down

Use a Tween to tween the height from 0 to whatever height you want, and width from 0 to whatever width you want.

You can take examples of making a popup menu show from the code here, as well as examples of performing actions on hover.

link|flag
vote up 1 vote down

Assuming your menu has id "mymenu", try this code to show it:

$('#mymenu').animate({width: '80px', height: '200px'})

and this code to hide it:

$('#mymenu').animate({width: '0px', height: '0px', opacity: 'hide'})
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.