feat: add animation

This commit is contained in:
Wentao Lyu 2023-04-01 00:09:49 +08:00
parent 462660d554
commit 059006382d
2 changed files with 68 additions and 9 deletions

View file

@ -28,6 +28,31 @@
transition: all 1s ease-in-out;
} */
.openAIOptions-simple-container {
pointer-events: none;
opacity: 0;
transition: all 0.5s ease-in-out;
}
.openAIOptions-simple-container.show {
pointer-events: fill;
opacity: 1;
}
.openAIOptions-advanced-container {
pointer-events: none;
opacity: 0;
transition: all 0.2s ease-in-out;
transform: scaleY(0);
transform-origin: bottom center;
}
.openAIOptions-advanced-container.show {
pointer-events: fill;
opacity: 1;
transform: scaleY(1)
}
.bing-styles {
position: absolute;
left: 0;