vue3实现倒计时
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
// Countdown.vue
<template>
{{ timeText }}
</template>
<script lang="ts">
interface Props {
startTime: number;
endTime: number;
}
// 定义默认的Props值
const props = withDefaults(defineProps<Props>(), {
startTime: Date.now(),
endTime: Date.now() + 1000 * 60 * 60 * 24,
})
const { startTime, endTime } = toRefs(props);
// 创建响应式数据remainingTime,表示剩余时间
const remainingTime = ref(endTime.value - startTime.value);
// 定义用于格式化时间的函数
const formatTimeText = (time: number): string => {
return time < 10 ? `0${time}` : `${time}`;
};
// 定义更新remainingTime的函数
const updateTime = (props: Props) => {
remainingTime.value = props.endTime - Date.now();
};
// 监听props的变化,每秒钟更新一次remainingTime
watchEffect(() => {
updateTime(props);
const timer = setInterval(() => {
updateTime(props);
}, 1000);
return () => {
/**
* 返回一个停止观察的函数。
* 这个函数被调用时,将取消对响应式数据的监听。
* 当组件销毁时,需要停止定时器并取消watchEffect的监听。
* 为此,可以使用return关键字来返回一个函数,这个函数包含清除定时器的逻辑。
* 因此,当组件被销毁时,这个函数就会被调用,从而清除定时器并取消对remainingTime的监听。
*/
clearInterval(timer);
};
});
//利用computed函数计算倒计时文本
const timeText = computed(() => {
const hours = Math.floor((remainingTime.value / 1000 / 60 / 60) % 24);
const minutes = Math.floor((remainingTime.value / 1000 / 60) % 60);
const seconds = Math.floor((remainingTime.value / 1000) % 60);
return `${formatTimeText(hours)}:${formatTimeText(minutes)}:${formatTimeText(seconds)}`;
});
</script>
GitHub 加速计划 / vu / vue
80
16
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:4 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 6 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 7 个月前
更多推荐
已为社区贡献7条内容
所有评论(0)