Mobile end elastic layer effect?

as shown in the figure

clipboard.png

Click all, pop up the option layer, and the designer doesn"t say much about it. There is no way to write with jq. I hope you can give me some advice / code >

.
Apr.03,2021

Don't animate if you don't say anything, just .show () `.hide () `. How slow it is to do animation.


css3 Animation

such as

div{
    transform:scale(0);
    transition:all .25s ease-in-out;
}

div.show{
    transform:scale(1);
    transition:all .25s ease-in-out;
}

there are many ways: bottom pop, left and right slide out, fade out, etc.


you can use the animation effects included with the animate.css plug-in, one of which is to click to display

from top to bottom.
Menu