This commit is contained in:
李志鹏
2026-05-15 17:32:55 +08:00
12 changed files with 914 additions and 143 deletions

View File

@@ -17,9 +17,9 @@
</template>
<script setup lang="ts">
import { ref, onMounted, onUnmounted } from 'vue'
const max = ref(98 * Math.PI)
const progress = ref(0)
import { ref } from "vue";
const max = ref(98 * Math.PI);
const progress = ref(0);
const handleScroll = (e: number) => {
progress.value = (e / 100) * max.value
}

View File

@@ -75,4 +75,4 @@
}
}
}
</style>
</style>

View File

@@ -187,4 +187,4 @@
}
}
}
</style>
</style>