Feat(云灵AI):对话接口对接完成

This commit is contained in:
lifizer
2025-04-06 12:57:39 +08:00
parent 16742b3c23
commit de473eba57
4 changed files with 86 additions and 8 deletions
+20 -1
View File
@@ -681,7 +681,7 @@ page {
}
.loader::before,
.loader::after {
content: "";
content: " ";
grid-area: 1/1;
margin: 2px;
border: inherit;
@@ -700,6 +700,25 @@ page {
100%{transform: rotate(1turn)}
}
.loading2 {
width: 24px;
height: 24px;
border: 2px solid #3D4CF1;
border-top-color: transparent;
border-radius: 100%;
animation: circle infinite 0.75s linear;
}
// 转转转动画
@keyframes circle {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
.music-wrap {
display: flex;
align-items: center;