[SOLVED] Dropdown Animation Settings on Main Menu
The drop down menu on the demo site has a nice animation but my installed site doesn't have this effect. How do get thsi this effect and how do I adjust it the timings. I like the demo although a little bit faster to drop down on the hover would be good, and a little bit faster at disappearing when pointer is moved away.
Also, the sticky main menu disappears then reappears after scrolling so far, how do I adjust the amount of scroll before it re-appears.
Thanks
CC
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Replied by joomlaplates on topic Dropdown Animation Settings on Main Menu
Posted 8 years 7 months ago #13353And the dropdown animation can be changed at Template customizer > Advanced > dropdown > animation
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
I tried the dropdown animation but doesn't seem to make any difference what i choose from the 3 options. I tried animation and nav bar animation both in the customizer
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Replied by joomlaplates on topic Dropdown Animation Settings on Main Menu
Posted 8 years 7 months ago #13375/*
* 1. Show dropdown
* 2. Set animation
* 3. Needed for scale animation
*/
.uk-open > .uk-dropdown,
.uk-open > .uk-dropdown-blank {
/* 1 */
display: block;
/* 2 */
-webkit-animation: uk-fade 0.2s ease-in-out;
animation: uk-fade 0.2s ease-in-out;
/* 3 */
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.uk-open > .uk-dropdown-navbar {
-webkit-animation: uk-fade 0.2s ease-in-out;
animation: uk-fade 0.2s ease-in-out;
}
All animations can be found here:
getuikit.com/docs/animation.html
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
It does seem a little slow at closing the dropdown but I think I read in the forum this can't be fixed, it's a browser problem?? Can this be changed to be quicker to close dropdown yet?
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Replied by joomlaplates on topic Dropdown Animation Settings on Main Menu
Posted 8 years 7 months ago #13377www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.