The specific code of JavaScript date effects is for your reference. The specific content is as follows Directly on the code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> *{ padding: 0; margin: 0; } #date{ width: 450px; height: 300px; background-color: darkorange; border-radius: 10px; margin: 100px auto; } #nowDate{ width: 450px; height: 60px; line-height: 60px; text-align: center; color: #fff; font-size: 26px; } #day{ width: 200px; height: 200px; line-height: 200px; background-color: orchid; margin: 0 auto; text-align: center; } </style> </head> <body> <div id="date"> <p id="nowDate"></p> <p id="day"></p> </div> <script type="text/javascript"> // Get the tag var nowDate = document.getElementById("nowDate"); var day = document.getElementById("day"); // Use timer to update time changes setInterval(nowNumTime,1000); nowNumTime(); function nowNumTime(){ var now = new Date(); var hour = now.getHours(); var minute = now.getMinutes(); var second = now.getSeconds(); var temp = '' + (hour>12 ? hour-12:hour); var year = now.getFullYear(); var month = now.getMonth(); var d = now.getDate(); var week = now.getDay(); console.log(week); //Index var weeks = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]; // console.log(temp); if (hour === 0){ temp = '12'; } temp = temp + (minute <10 ? ':0':":"+minute); temp = temp + (second <10 ? ':0':":"+second); temp = temp + (hour>=12 ? ' PM':' AM'); temp = `${year}${month}${d}${temp}${weeks[week]}`; // console.log(temp); nowDate.innerHTML = temp; } </script> </body> </html> Implementation effect diagram: 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:
|
<<: The meaning and usage of linux cd
>>: How to Clear Disk Space on CentOS 6 or CentOS 7
1. Two properties of table reset: ①border-collaps...
Editor: This article discusses the role that inte...
INSERT INTO hk_test(username, passwd) VALUES (...
This article uses examples to explain the concept...
Table of contents premise TypeScript vs JavaScrip...
Table of contents Constructor new Operator Implem...
Preface In fact, the humble "!" has man...
top command is the best command that everyone is ...
Table of contents Preface 1. What is a lock? 2. L...
Development environment windows Development Tools...
I haven't written a blog for a long time. Las...
Table of contents 1. What is Docker Compose and h...
CSS writing order 1. Position attributes (positio...
1 Download MySQL Download address: http://downloa...
1. Add in package.json "main": "el...