mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
Remake the home page.
This commit is contained in:
parent
5a585ddf7c
commit
34a0868b26
6 changed files with 72 additions and 7 deletions
|
@ -281,10 +281,10 @@ onMounted(() => {
|
|||
});
|
||||
|
||||
watchEffect((cleanupFn) => {
|
||||
const tier = setTimeout(() => (progress.value = 10), 200);
|
||||
const timer = setTimeout(() => (progress.value = 30), 500);
|
||||
const timmer = setTimeout(() => (progress.value = 70), 1000);
|
||||
const timmmer = setTimeout(() => (progress.value = 100), 1600);
|
||||
const tier = setTimeout(() => (progress.value = 10), Math.random() * 50);
|
||||
const timer = setTimeout(() => (progress.value = 30), Math.random() * 100);
|
||||
const timmer = setTimeout(() => (progress.value = 70), Math.random() * 150);
|
||||
const timmmer = setTimeout(() => (progress.value = 100), 1800);
|
||||
cleanupFn(() => clearTimeout(tier));
|
||||
cleanupFn(() => clearTimeout(timer));
|
||||
cleanupFn(() => clearTimeout(timmer));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue