first-update
This commit is contained in:
19
easy-dataset-main/styles/globals.css
Normal file
19
easy-dataset-main/styles/globals.css
Normal file
@@ -0,0 +1,19 @@
|
||||
/* 添加流式输出的闪烁光标动画 */
|
||||
@keyframes blink {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.blinking-cursor {
|
||||
animation: blink 1s infinite;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
color: #666;
|
||||
}
|
||||
Reference in New Issue
Block a user