带JavaScript 数字和模拟时钟(jQuery)

  • 源码大小:32.78KB
  • 所需积分:1积分
  • 源码编号:19JP-3770
  • 浏览次数:1102次
  • 最后更新:2023年07月21日
  • 所属栏目:时间和时钟
本站默认解压密码:19jp.com 或 19jp_com

简介

在本教程中,我们将使用JavaScript(jQuery)创建数字和模拟时钟。我们的时钟会很简单,但它们仍然能准确地报时。

继续滚动学习如何创建这两种类型的时钟,我们还将提供一些自定义它们的技巧。让我们开始吧!

如何使用它:

1.为数字和模拟时钟创建HTML。

  1. <!-- Analog Clock -->
  2. <div class="clock">
  3. <div class="hour">
  4. <div class="hor" id="hor">
  5. </div>
  6. </div>
  7. <div class="minutes">
  8. <div class="mn" id="mn">
  9. </div>
  10. </div>
  11. <div class="seconds">
  12. <div class="sc" id="sc">
  13. </div>
  14. </div>
  15. </div>
  16.  
  17. <!-- Digital Clock -->
  18. <div class="datetime">
  19. <div class="date">
  20. <span id="day">Day</span>,
  21. <span id="month">Month</span>
  22. <span id="num">00</span>,
  23. <span id="year">Year</span>
  24. </div>
  25. <div class="time">
  26. <span id="hour">00</span>:
  27. <span id="min">00</span>:
  28. <span id="sec">00</span>
  29. <span id="period">AM</span>
  30. </div>
  31. </div>

2.创建按钮以在时钟类型之间切换。

  1. <button class="dig" onclick="digital()">Digital clock</button>
  2. <button class="analog" onclick="analog()">Analog Clock</button>

3.加载时钟.js(模拟时钟)和数字.jsjQuery之后的(数字时钟)脚本。

  1. <script src="/path/to/cdn/jquery.min.js"></script>
  2. <script src="/path/to/js/clock.js"></script>
  3. <script src="/path/to/js/digital.js"></script>

4.必要的CSS样式。

  1. .dig, .analog{
  2. height: 42px;
  3. align-self: center;
  4. margin-left: 2em;
  5. padding: 10px;
  6. border-radius: 8px;
  7. border: 3px solid rgb(57, 138, 243);
  8. cursor: pointer;
  9. transition: 0.3s ease all;
  10. }
  11.  
  12. .clock{
  13. width: 420px;
  14. height: 420px;
  15. margin:0 auto;
  16. margin-top: 5%;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. background: url(clock.png);
  21. background-size: cover;
  22. border: 4px solid seagreen;
  23. border-radius: 50%;
  24. box-shadow: 0 -15px 15px rgba(255,255,255, 0.05),
  25. inset 0 -15px 15px rgba(255,255,255, 0.05),
  26. 0 15px 15px rgba(0, 0, 0, 0.3),
  27. inset 0 15px 15px rgba(0, 0, 0, 0.3);
  28. }
  29.  
  30. .clock:before{
  31. content: '';
  32. position: absolute;
  33. width: 15px;
  34. height: 15px;
  35. background: #fff;
  36. border-radius: 50%;
  37. z-index: 10000;
  38. }
  39.  
  40. .clock .hour, .clock .minutes, .clock .seconds{
  41. position: absolute;
  42.  
  43. }
  44.  
  45. .clock .hour, .hor{
  46. width: 160px;
  47. height: 160px;
  48.  
  49. }
  50.  
  51. .clock .minutes, .mn{
  52. width: 190px;
  53. height: 230px;
  54. }
  55.  
  56. .clock .seconds, .sc{
  57. width: 230px;
  58. height: 230px;
  59. }
  60.  
  61. .hor, .mn, .sc{
  62. display: flex;
  63. justify-content: center;
  64. position: absolute;
  65. border-radius: 50%;
  66. }
  67.  
  68. .hor:before{
  69. content: '';
  70. position: absolute;
  71. width: 8px;
  72. height: 85px;
  73. background: seagreen;
  74. z-index: 10;
  75. border-radius: 6px 6px 0 0;
  76. }
  77.  
  78. .mn:before{
  79. content: '';
  80. position: absolute;
  81. width: 5px;
  82. height: 120px;
  83. background: #fff;
  84. z-index: 11;
  85. border-radius: 6px 6px 0 0;
  86. }
  87.  
  88. .sc:before{
  89. content: '';
  90. position: absolute;
  91. width: 2px;
  92. height: 150px;
  93. background:rgb(252, 40, 86);
  94. z-index: 12;
  95. border-radius: 6px 6px 0 0;
  96. }
  97.  
  98. .datetime{
  99. margin:0 auto;
  100. margin-top: 15%;
  101. color: #fff;
  102. background:seagreen ;
  103. font-family: "Segoe UI", sans-serif;
  104. width: 410px;
  105. padding: 15px 10px;
  106. border: 3px solid seagreen;
  107. border-radius: 5px;
  108. -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(255,255,255, 0.1));
  109. box-shadow: 0 0 30px seagreen;
  110. }
  111.  
  112. .date{
  113. font-size: 20px;
  114. font-weight: 600;
  115. text-align: center;
  116. letter-spacing: 3px;
  117. }
  118.  
  119. .time{
  120. font-size: 60px;
  121. display: flex;
  122. justify-content: center;
  123. align-items: center;
  124. }
  125.  
  126. .time span:not(:last-child){
  127. position: relative;
  128. margin: 0 6px;
  129. font-weight: 600;
  130. text-align: center;
  131. letter-spacing: 3px;
  132. }
  133.  
  134. .time span:last-child{
  135. background: seagreen;
  136. font-size: 30px;
  137. font-weight: 600;
  138. text-transform: uppercase;
  139. margin-top: 10px;
  140. padding: 0 5px;
  141. border-radius: 3px;
  142. }

5.使时钟在设备之间完全响应。

  1. @media screen and (max-width: 600px){
  2. .clock{
  3. height:350px ;
  4. width: 350px;
  5. }
  6. .datetime{
  7. width: 380px;
  8. }
  9. .date{
  10. font-size: 18px;
  11. }
  12. .time{
  13. font-size: 50px;
  14. }
  15. }
  16.  
  17. @media screen and (max-width: 450px){
  18. .datetime{
  19. width: 350px;
  20. }
  21. .clock{
  22. height:330px ;
  23. width: 330px;
  24. }
  25. .date{
  26. font-size: 16px;
  27. }
  28. .time{
  29. font-size: 45px;
  30. }
  31. }

6.初始化时钟。就是这样。

  1. initClock();

预览截图