html版电子表,秒表,倒计时

2024-02-26 02:38

本文主要是介绍html版电子表,秒表,倒计时,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

电子表:

<button οnclick="fullscreen()">全屏切换</button>
<button οnclick="fontsizeup()">变大</button>
<button οnclick="fontsizedown()">变小</button>
<button οnclick="fontsizereset()">恢复</button>
<div style="margin:0 auto; text-align:center"><div style="font-size:48px; color: blue;" id="date"><span id="year">2017</span>-<span id="month">01</span>-<span id="day">01</span></div><div style="font-size:140px; color: blue;" id="time"><span id="h">12</span>:<span id="m">00</span>:<span id="s">00</span>.<span id="sss">000</span></div>
</div>
<script>var bfullscreen = false;
function fullscreen() {//document.documentElement.webkitRequestFullScreen();//var docElm = document.documentElement;//console.log(docElm)if (!bfullscreen) {if (document.requestFullscreen) { // w3cdocument.requestFullscreen();} else if (document.mozRequestFullScreen) { // FireFoxdocument.mozRequestFullScreen();} else if (document.webkitRequestFullScreen) { // chromedocument.webkitRequestFullScreen();  } else if (document.msRequestFullscreen) { // IE11document.msRequestFullscreen();}bfullscreen = true;} else {if (document.exitFullscreen) {document.exitFullscreen();} else if (document.mozCancelFullScreen) {document.mozCancelFullScreen();} else if (document.webkitCancelFullScreen) {document.webkitCancelFullScreen();} else if (document.msExitFullscreen) {document.msExitFullscreen();}bfullscreen = false;}
}
function fontsizereset() {var ed = document.getElementById("date");var et = document.getElementById("time");ed.style.fontSize = "48px";et.style.fontSize = "160px";
}
function fontsizeup() {var ed = document.getElementById("date");var et = document.getElementById("time");var vd = ed.style.fontSize;var vt = et.style.fontSize;vd = parseInt(vd.substring(0, vd.length - 2)) + 16;vt = parseInt(vt.substring(0, vt.length - 2)) + 24;if (vd > 240)vd = 240;if (vt > 360)vt = 360;ed.style.fontSize = vd + "px";et.style.fontSize = vt + "px";
}
function fontsizedown() {var ed = document.getElementById("date");var et = document.getElementById("time");var vd = ed.style.fontSize;var vt = et.style.fontSize;vd = parseInt(vd.substring(0, vd.length - 2)) - 20;vt = parseInt(vt.substring(0, vt.length - 2)) - 20;if (vd < 12)vd = 12;if (vt < 16)vt = 16;ed.style.fontSize = vd + "px";et.style.fontSize = vt + "px";
}// -------------------------------
function updateDate(y, m, d) {if (m < 10)m = "0" + m;if (d < 10)d = "0" + d;document.getElementById("year").innerHTML = y;document.getElementById("month").innerHTML = m;document.getElementById("day").innerHTML = d;
}function updateTime(h, m, s, sss) {if (h < 10)h = "0" + h;if (m < 10)m = "0" + m;if (s < 10)s = "0" + s;document.getElementById("h").innerHTML = h;document.getElementById("m").innerHTML = m;document.getElementById("s").innerHTML = s;document.getElementById("sss").innerHTML = sss;
}function update(){var date = new Date();updateDate(date.getFullYear(), date.getMonth() + 1, date.getDate());updateTime(date.getHours(), date.getMinutes(), date.getSeconds(), parseInt(date.getMilliseconds() / 100));};
setInterval("update()",100); // 用延时的话间隔1s多1ms</script>



秒表:

<button οnclick="start()">开始</button>
<button οnclick="stop()">停止</button>
<button οnclick="record()">记录</button>
<button οnclick="clean()">清空</button>
<div style="margin:0 auto; text-align:center; height: 400px;"><div style="font-size:140px; color: blue;" id="time"><span id="h">00</span>:<span id="m">00</span>:<span id="s">00</span>.<span id="sss">000</span></div><pre id="result"></pre>
</div>
<script>// -------------------------------
function updateTime(h, m, s, sss) {if (h < 10)h = "0" + h;if (m < 10)m = "0" + m;if (s < 10)s = "0" + s;if (sss < 10)sss = "00" + sss;else if (sss < 100)sss = "0" + sss;document.getElementById("h").innerHTML = h;document.getElementById("m").innerHTML = m;document.getElementById("s").innerHTML = s;document.getElementById("sss").innerHTML = sss;
}
var _time = new Date().getTime();
function update(){var time = new Date().getTime() - _time;console.log(time);var ms = time % 1000;time = (time - ms) / 1000;var s = time % 60;time = (time - s) / 60;var m = time % 60;time = (time - m) / 60;var h = time % 60;time = (time - h) / 60;updateTime(h, m, s, ms);};
var interval = null;
function start() {if (interval != null) return;var h = document.getElementById("h").innerHTML;var m = document.getElementById("m").innerHTML;var s = document.getElementById("s").innerHTML;var sss = document.getElementById("sss").innerHTML;//console.log("" + parseInt(sss) +"-"+ parseInt(s) + "-" + parseInt(m)  + "-" + parseInt(h));var time = parseInt(sss) + parseInt(s) * 1000 + parseInt(m) * 60000 + parseInt(h) * 3600000;//console.log("time=" + time);_time = new Date().getTime() - time;interval = setInterval("update()",1); // 用延时的话间隔1s多1ms
}
function stop() {if (interval == null) return;clearInterval(interval);interval = null;
}
function record() {var e = document.getElementById("result");var t = e.innerHTML;var h = document.getElementById("h").innerHTML;var m = document.getElementById("m").innerHTML;var s = document.getElementById("s").innerHTML;var sss = document.getElementById("sss").innerHTML;e.innerHTML = t + "\n" + h +":"+ m +":"+ s +"."+ sss;
}
function clean() {_time = new Date().getTime();update();document.getElementById("result").innerHTML = "";
}</script>



倒计时:

<button οnclick="start()">开始</button>
<button οnclick="stop()">停止</button>
<button οnclick="clean()">清空</button>
<div style="margin:0 auto; text-align:center" id="main"><div style="font-size:24px;" id="timeset"><input type="number" id="hh" min="0" max="23" value="0"> :<input type="number" id="mm" min="0" max="59" value="0"> :<input type="number" id="ss" min="0" max="59" value="30"> .<input type="number" id="ssss" min="0" max="999" value="0"><button οnclick="set()">设置定时</button></div><div style="font-size:140px; color: blue;" id="time"><span id="h">00</span>:<span id="m">00</span>:<span id="s">00</span>.<span id="sss">000</span></div><pre id="result"></pre>
</div>
<script>
function set() {var h = document.getElementById("hh").value;var m = document.getElementById("mm").value;var s = document.getElementById("ss").value;var sss = document.getElementById("ssss").value;h = parseInt(h);m = parseInt(m);s = parseInt(s);sss = parseInt(sss);updateTime(h, m, s, sss);
}
// -------------------------------
function updateTime(h, m, s, sss) {if (h < 10)h = "0" + h;if (m < 10)m = "0" + m;if (s < 10)s = "0" + s;if (sss < 10)sss = "00" + sss;else if (sss < 100)sss = "0" + sss;document.getElementById("h").innerHTML = h;document.getElementById("m").innerHTML = m;document.getElementById("s").innerHTML = s;document.getElementById("sss").innerHTML = sss;
}
var _time = new Date().getTime();
function update(){var time = _time - new Date().getTime();var end = false;if (time <= 0) {time = 0;end = true;}//console.log(time);var ms = time % 1000;time = (time - ms) / 1000;var s = time % 60;time = (time - s) / 60;var m = time % 60;time = (time - m) / 60;var h = time % 60;time = (time - h) / 60;updateTime(h, m, s, ms);if (end) {stop();warn();return;}
};var interval = null;
function start() {if (interval != null) return;var h = document.getElementById("h").innerHTML;var m = document.getElementById("m").innerHTML;var s = document.getElementById("s").innerHTML;var sss = document.getElementById("sss").innerHTML;//console.log("" + parseInt(sss) +"-"+ parseInt(s) + "-" + parseInt(m)  + "-" + parseInt(h));var time = parseInt(sss) + parseInt(s) * 1000 + parseInt(m) * 60000 + parseInt(h) * 3600000;//console.log("time=" + time);_time = new Date().getTime() + time;//console.log(_time);document.getElementById("time").style.backgroundColor = "#fff";interval = setInterval("update()", 1);
}
function stop() {document.getElementById("time").style.backgroundColor = "#fff";if (interval == null) return;clearInterval(interval);interval = null;
}function clean() {stop();_time = new Date().getTime();updateTime(0,0,0,0);
}function warn() {console.log("wann, end");document.getElementById("time").style.backgroundColor = "red";//alert("到时间了");
}
</script>





这篇关于html版电子表,秒表,倒计时的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/747479

相关文章

详解Vue如何使用xlsx库导出Excel文件

《详解Vue如何使用xlsx库导出Excel文件》第三方库xlsx提供了强大的功能来处理Excel文件,它可以简化导出Excel文件这个过程,本文将为大家详细介绍一下它的具体使用,需要的小伙伴可以了解... 目录1. 安装依赖2. 创建vue组件3. 解释代码在Vue.js项目中导出Excel文件,使用第三

Java实现Excel与HTML互转

《Java实现Excel与HTML互转》Excel是一种电子表格格式,而HTM则是一种用于创建网页的标记语言,虽然两者在用途上存在差异,但有时我们需要将数据从一种格式转换为另一种格式,下面我们就来看看... Excel是一种电子表格格式,广泛用于数据处理和分析,而HTM则是一种用于创建网页的标记语言。虽然两

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情

React实现原生APP切换效果

《React实现原生APP切换效果》最近需要使用Hybrid的方式开发一个APP,交互和原生APP相似并且需要IM通信,本文给大家介绍了使用React实现原生APP切换效果,文中通过代码示例讲解的非常... 目录背景需求概览技术栈实现步骤根据 react-router-dom 文档配置好路由添加过渡动画使用

使用Vue.js报错:ReferenceError: “Vue is not defined“ 的原因与解决方案

《使用Vue.js报错:ReferenceError:“Vueisnotdefined“的原因与解决方案》在前端开发中,ReferenceError:Vueisnotdefined是一个常见... 目录一、错误描述二、错误成因分析三、解决方案1. 检查 vue.js 的引入方式2. 验证 npm 安装3.

vue如何监听对象或者数组某个属性的变化详解

《vue如何监听对象或者数组某个属性的变化详解》这篇文章主要给大家介绍了关于vue如何监听对象或者数组某个属性的变化,在Vue.js中可以通过watch监听属性变化并动态修改其他属性的值,watch通... 目录前言用watch监听深度监听使用计算属性watch和计算属性的区别在vue 3中使用watchE

python解析HTML并提取span标签中的文本

《python解析HTML并提取span标签中的文本》在网页开发和数据抓取过程中,我们经常需要从HTML页面中提取信息,尤其是span元素中的文本,span标签是一个行内元素,通常用于包装一小段文本或... 目录一、安装相关依赖二、html 页面结构三、使用 BeautifulSoup javascript

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template