This article mainly shares the sample code for implementing the holiday time countdown function in native js. Friends who are interested can come and see it together.
Knowledge points
1. Implementation principle:
Use end time - current time = Time difference
The time difference will naturally decrease by 1 second every time the current time passes.
So the current time needs to be updated once every second to achieve the countdown effect
2. What needs to be paid attention to is the conversion between times and the processing of the obtained values
3. Methods used:
obj.getTime() //换算成毫秒 Math.floor() //把小数点向下舍入结果取一个整数 50%24 // 这是对数值求余的方法,意思是 假如有50个小时,一天24个小时 这个得出的结果就是 余数是2
There are detailed comments in the complete code for specific numerical calculation processing
Complete code
Note: The code comes with a code that displays the current time. The standard format and countdown days
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>demo</title> <style> body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0;} h1,h2,h3,h4,h5,h6{font-size:100%;} address,cite,dfn,em,var{font-style:normal;} code,kbd,pre,samp{font-family:courier new,courier,monospace;} ul,ol{list-style:none;} a{text-decoration:none;} a:hover{text-decoration:none;} sup{vertical-align:text-top;} sub{vertical-align:text-bottom;} legend{color:#000;} fieldset,img{border:0;} button,input,select,textarea{font-size:100%;} table{border-collapse:collapse;border-spacing:0;} .clear{clear: both;float: none;height: 0;overflow: hidden;} </style> </head> <body> <p id="time"></p> <br/> <p id="day"></p> <br/> <p id="tm"></p> <script type="text/javascript"> //在页面加载完后立即执行多个函数完美方案。 function addloadEvent(func){ var oldonload=window.onload; if(typeof window.onload !="function"){ window.onload=func; } else{ window.onload=function(){ if(oldonload){ oldonload(); } func(); } } } addloadEvent(showTime); addloadEvent(day); addloadEvent(tb); //在页面加载完后立即执行多个函数完美方案over。 //天时秒分倒计时 function tb(){ var myDate=new Date();//获取当前时间 var endtime=new Date("2018,1,1");//获取结束时间 //换算成秒 小数点向下舍入取整 var ltime=Math.floor((endtime.getTime()-myDate.getTime())/1000); //console.log(ltime) //换算成天 小数点向下舍入取整 var d=Math.floor(ltime/(24*60*60)); //换算成小时取去掉天数的余数(也就是小时) 小数点向下舍入取整 var h=Math.floor(ltime/(60*60)%24); //换算成分钟取去掉小时的余数(也就是分钟) 小数点向下舍入取整 var m=Math.floor(ltime/60%60); //换算成分钟取去掉分钟的余数(也就是秒) 小数点向下舍入取整 var s=Math.floor(ltime%60); document.getElementById("tm").innerHTML="距2018年元旦还有:"+d+"天"+h+"小时"+m+"分钟"+s+"秒"; if(ltime<=0){ document.getElementById("tm").innerHTML="元旦快乐!"; clearTimeout(tb); } setTimeout(tb,1000); } //当秒数为个位数时前面+字符串0 function checkTime(i){ return i<10? "0"+i:""+i; } //当前时间标准格式 function showTime(){ var myDate=new Date();//获取当前时间 var year=myDate.getFullYear();//获取年份 var month=myDate.getMonth()+1;//获取月份是0-11的数字所以+1 var date=myDate.getDate();//日 var day=myDate.getDay();// var h=myDate.getHours();//小时 var m=myDate.getMinutes();//分钟 var s=myDate.getSeconds();//秒 checkTime(m); checkTime(s); //console.log(day) var week="日一二三四五六".charAt(day); document.getElementById("time").innerHTML=year+"年"+month+"月"+date+"日"+"星期"+week+h+":"+m+":"+s; setTimeout(showTime,1000); } //倒计时天数计算 function day(){ var myDate=new Date();//获取当前时间 var endtime=new Date("2018,1,1");//获取结束时间 //先换算成毫秒再相减就是时间差,再除以一天的毫秒数结果是带有小数点的,用math方法进一位取整 var ltime=Math.ceil((endtime.getTime()-myDate.getTime())/(24*60*60*1000)); document.getElementById("day").innerHTML="距2018年元旦还有:"+ltime+"天"; } </script> </body> </html>
are what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
Detailed explanation of the use of event delegation in JS
Yuansheng JS creates a lottery page
p5.jsRealizing Golden Spiral Animation
The above is the detailed content of Native js implements holiday time countdown function (code attached). For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
