Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hey guys, I need help with a hover animation in the header.
I’d like a smooth sliding animation for the submenu. So, when I hover over the menu item "Products," the submenu should slide out smoothly every time.
I want the same animation as here when you hover over "store": https://tomnoske.store/
And here’s my store: https://1049xn-ya.myshopify.com/
Thanks for your help,
Tim
Solved! Go to the solution
This is an accepted solution.
Hope this guide is helpful to you!
header-menu details::details-content {
display: block;
block-size: 0;
overflow: hidden;
transition-property: block-size, content-visibility;
transition-duration: 0.3s;
transition-behavior: allow-discrete;
transition-timing-function: ease-out;
}
header-menu details[open="true"]::details-content {
block-size: auto;
block-size: calc-size(auto, size);
}
This is an accepted solution.
Hope this guide is helpful to you!
header-menu details::details-content {
display: block;
block-size: 0;
overflow: hidden;
transition-property: block-size, content-visibility;
transition-duration: 0.3s;
transition-behavior: allow-discrete;
transition-timing-function: ease-out;
}
header-menu details[open="true"]::details-content {
block-size: auto;
block-size: calc-size(auto, size);
}
Thank you so much, I really appreciate it!