This commit is contained in:
HuangHai
2026-01-21 08:42:20 +08:00
parent e51dc18d06
commit 7206bd554c
2 changed files with 15 additions and 0 deletions

View File

@@ -337,6 +337,20 @@ body {
font-size: 1.1em !important;
}
/* Animations */
.loading-dots::after {
content: '.';
animation: dots 1.5s steps(5, end) infinite;
}
@keyframes dots {
0%, 20% { content: '.'; }
40% { content: '..'; }
60% { content: '...'; }
80% { content: '....'; }
100% { content: '.....'; }
}
/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }

View File

@@ -413,6 +413,7 @@ createApp({
initTrendChart();
loadAllOperatorsPrices();
loadTrendData();
startAiAnalysis();
});
return {