CSS3 Effect for Horizontal Menu | Artisteer 4


Author Message
Philip

Posted: 9/24/2012
Quote message 

Is it possible to make the Horizontal menu with effect to the submenus ?

I mean to add sliding effect / fading…

If we can, what's the code for it? where to place it? I mean.. I need your kind help..

Thanks in advance
 
Philip

Posted: 9/24/2012
Quote message 

Quote Philip:

Is it possible to make the Horizontal menu with effect to the submenus ?

I mean to add sliding effect / fading…

If we can, what's the code for it? where to place it? I mean.. I need your kind help..

Thanks in advance


Effects like:

CSS3 Transitions
CSS3 Animations
CSS3 Borders
CSS3 Backgrounds
CSS3 Text Effects
CSS3 Fonts
CSS3 2D Transforms
CSS3 3D Transforms
CSS3 Multiple Columns
CSS3 User Interface

 
Jeff

Posted: 10/9/2012
Quote message 

This would be great but I am using a 3rd party joomla extension to achieve this

see: http://www.fclift.com/2012x

Let me know if you need the extension link
 
Jonas

Posted: 10/11/2012
Quote message 

I'd like to know what your using. I've been looking around for something that takes care of transitions besides manual coding!
 
Dave

Posted: 3/2/2013
Quote message 

Quote Philip:

Is it possible to make the Horizontal menu with effect to the submenus ?

I mean to add sliding effect / fading…

If we can, what's the code for it? where to place it? I mean.. I need your kind help..

Thanks in advance


I had a chance to figure out how to make sliding effect work.
Add this code in the end of your CSS file:
.art-hmenu ul {

transition:all .2 linear;
-moz-transition:all .2s linear;
-webkit-transition:all .2s linear;
-o-transition:all .2s linear;
}

.art-hmenu ul:focus {
transition:all .5s linear;
-moz-transition:all .5s linear;
-webkit-transition:all .5s linear;
-o-transition:all .5s linear;
}
O:) ;-)
 
Steve1978

Posted: 4/2/2013
Quote message 

Hi Dave,

Thank you for your sollution.
This works very well in Firefox and Chrome but not in IE9.

How can we get the code to work in IE?

Br,

Steve
 
Luis Lara

Posted: 11/18/2015
Quote message 

Dave, I don't know who you are but thank you.