Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css height animation

#menu #list {
    max-height: 0;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
    background: #d5d5d5;
}

#menu:hover #list {
    max-height: 500px;
    transition: max-height 0.25s ease-in;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #css #height #animation
ADD COMMENT
Topic
Name
9+5 =