Answer the question
In order to leave comments, you need to log in
When checking the system, the error "Mail sending information is cached, this may have happened as a result of a failure, try clearing the entire cache"?
What could be the problem? At the same time, mail is sent only after 30-50 minutes.
Answer the question
In order to leave comments, you need to log in
I think you can show / hide, it's simple.
And that effect with menu items is implemented using transition and transform
Initial state of menu items
.menu__item {
transform: translateY(100%);
opacity: 0;
transition: 0.4s ease;
transition-property: opacity, transform;
}
.menu_state_open .menu__item {
opacity: 1;
transform: translate(0);
}
.menu {
position: fixed;
left: -99999px;
}
.menu_state_open {
left: 0;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question