This article example shares the specific code of JS to realize the picture digital clock for your reference. The specific content is as follows First, this is the picture we prepared <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> </style> </head> <body> <div> <img src="img/0.png" alt=""> <img src="img/0.png" alt=""> <img src="img/10.png" alt=""> <img src="img/0.png" alt=""> <img src="img/0.png" alt=""> <img src="img/10.png" alt=""> <img src="img/0.png" alt=""> <img src="img/0.png" alt=""> </div> <script type="text/javascript"> //Function function get(){ //Get the page img var img = document.getElementsByTagName('img'); //Get time var date=new Date(); var hour=date.getHours(); var minute=date.getMinutes(); var secind=date.getSeconds(); //Fill in 0 if(hour<10){ hour='0'+hour; }else if(minute<0){ minute='0'+minute; }else if (secind) { secind='0'+secind; } // string concatenation img[0].src='img/'+parseInt(hour/10)+'.png'; img[1].src='img/'+hour%10+'.png'; img[3].src='img/'+parseInt(minute/10)+'.png'; img[4].src='img/'+minute%10+'.png'; img[6].src='img/'+parseInt(secind/10)+'.png'; img[7].src='img/'+secind%10+'.png'; } get(); setInterval(get,1000); //Call to refresh every second</script> </body> </html> Final implementation The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of the murder caused by a / slash in Nginx proxy_pass
>>: Solution to the problem of mysql master-slave switch canal
Table of contents 1. Original demand 2. Solution ...
This question is a discussion among netizens in a...
This article mainly introduces how to implement a...
<br /> The website access speed can directly...
Table of contents first step Step 2 Step 3 Step 4...
Install pymysql pip install pymysql 2|0Using pymy...
As shown in the figure below, it is a common desi...
Problem <br />In responsive layout, we shou...
Preface This article only focuses on what Nginx c...
Recommended reading: MySQL 8.0.19 supports accoun...
Table of contents 1. Concept Memory management mo...
Table of contents Pull a centos image Generate ng...
Table of contents 1. charAt grammar parameter ind...
This article shares the installation tutorial of ...
When releasing a project, you will often encounte...