基于Bootstrap5实现的响应式毫秒计时器秒表

所属分类: 网页特效-实用工具    2024-01-30 11:59:42

基于Bootstrap5实现的响应式毫秒计时器秒表 ie兼容6
反馈问题  查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

基于Bootstrap5实现的响应式毫秒计时器秒表(共3个文件)

    • index.html

使用方法

let startTime;
        let accumulatedTime = 0;
        let running = false;

        function startStop() {
            if (running) {
                running = false;
            } else {
                startTime = null;
                requestAnimationFrame(updateTime);
                running = true;
            }
        }

        function reset() {
            accumulatedTime = 0;
            updateDisplay();
            running = false;
        }

        function updateTime(timestamp) {
            if (!startTime) {
                startTime = timestamp;
            }

            if (!running) return;

            accumulatedTime = timestamp - startTime;
            updateDisplay();

            requestAnimationFrame(updateTime);
        }

        function updateDisplay() {
            const totalMilliseconds = Math.floor(accumulatedTime);
            const days = Math.floor(totalMilliseconds / (24 * 60 * 60 * 1000));
            const hours = Math.floor((totalMilliseconds % (24 * 60 * 60 * 1000)) / (60 * 60 * 1000));
            const minutes = Math.floor((totalMilliseconds % (60 * 60 * 1000)) / (60 * 1000));
            const seconds = Math.floor((totalMilliseconds % (60 * 1000)) / 1000);
            const milliseconds = totalMilliseconds % 1000;

            const timeString = `${formatTime(days)}:${formatTime(hours)}:${formatTime(minutes)}:${formatTime(seconds)}:${formatTime(milliseconds, 3)}`;
            document.getElementById('stopwatch').innerText = timeString;
        }

        function formatTime(value, digits = 2) {
            const paddedValue = value.toString().padStart(digits, '0');
            return paddedValue.substring(0, digits);
        }

        // Add event listener to stop the stopwatch on any touch
        $(document).on('touchstart', function () {
            running = false;
        });

        // Initial display
        updateDisplay();

站长提示:
1. 平台上所有素材资源,需注册登录会员方能正常下载。
2. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励20K币
3. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
4. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 实用工具

jquery上传图片添加文本文字图片编辑器工具

一款给图片添加自定义文字的实用工具,使用了jQueryUI库通过鼠标拖放操作来更改文本文字在背景图片上的位置,可通过canvas生成编辑后的图片,生成预览图。
  实用工具
 142  

jquery打印html页面指定区域特效代码

Print是一个简单易用的页面局部打印插件,用户可只打印html网页的指定区域内容。
  实用工具
 179  

jquery基于clipboard代码全选复制插件

Code Box Copy是一个常用的Prism语法高亮器插件,可自定义的复制按钮将代码框中的内容复制到剪贴板。
  实用工具
 155  

图片增加滤镜输出显示css代码实用工具

一个在线图片调色工具,提供了一个自动控制面板,可使用CSS过滤器效果可视化图片,并在设置后输出显示CSS样式代码。
  实用工具
 132  

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论