HTML, CSS, JavaScript를 사용한 간단한 아날로그 시계디자인이 마음에 드셨으면 좋겠습니다. 아래에서 이 디자인을 만드는 방법에 대한 전체 튜토리얼을 공유했습니다. 아래 튜토리얼이 도움이 되기를 바랍니다. 이를 위해서는 먼저 HTML과 CSS 파일을 만들어야 합니다. 1단계: 시계의 기본 구조 만들기이 HTML 코드는 기본적으로 이 아날로그 시계의 기본 구조입니다. 저는 이 시계의 배경과 모양을 디자인하기 위해 CSS 코드를 사용했습니다. 위 이미지에서 볼 수 있듯이 네오모픽 디자인의 형태를 취하고 있습니다. 여기서는 CSS 코드를 사용하여 Neumorphism 디자인을 구현했습니다.이전 글 "HTML/CSS와 Three.js를 사용하여 불을 뿜는 드래곤 게임 만들기(코드 공유) 가르쳐주세요
"에서 HTML/CSS와 Three.js를 사용하여 만드는 방법을 소개했습니다. 불을 뿜는 드래곤 게임. 다음 글에서는 JS를 사용하여 멋진 블랙 테마 아날로그 시계를 만드는 방법을 소개합니다.
7px solid #282828
。我使用box-shadow
使其更清晰。border-radius 50%
使这款手表呈圆形。我还使用了高度和宽度 30 rem。如果你想让这款手表更大,你可以增加它的尺寸。
HTML
<div class="clock"> </div>
CSS
html { background: #282828; text-align: center; font-size: 10px; } body { margin: 0; font-size: 2rem; display: flex; flex: 1; min-height: 100vh; align-items: center; } .clock { width: 30rem; height: 30rem; border: 7px solid #282828; box-shadow: -4px -4px 10px rgba(67,67,67,0.5), inset 4px 4px 10px rgba(0,0,0,0.5), inset -4px -4px 10px rgba(67,67,67,0.5), 4px 4px 10px rgba(0,0,0,0.3); border-radius: 50%; margin: 50px auto; position: relative; padding: 2rem; }
演示效果
HTML
<div class="outer-clock-face"> <div class="marking marking-one"></div> <div class="marking marking-two"></div> <div class="marking marking-three"></div> <div class="marking marking-four"></div> </div>
CSS
.outer-clock-face { position: relative; width: 100%; height: 100%; border-radius: 100%; background: #282828; overflow: hidden; } .outer-clock-face::after { -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); transform: rotate(90deg) } .outer-clock-face::before, .outer-clock-face::after, .outer-clock-face .marking{ content: ''; position: absolute; width: 5px; height: 100%; background: #1df52f; z-index: 0; left: 49%; }
演示效果
CSS
.outer-clock-face .marking { background: #bdbdcb; width: 3px; } .outer-clock-face .marking.marking-one { transform: rotate(30deg) } .outer-clock-face .marking.marking-two { transform: rotate(60deg) } .outer-clock-face .marking.marking-three { transform: rotate(120deg) } .outer-clock-face .marking.marking-four { transform: rotate(150deg) }
演示效果
我使用下面的 HTML 和 CSS 代码制作了一个圆圈。结果,长线的中间被覆盖,并且它具有完整的 1 到 12 个标记大小。
HTML:
<div class="inner-clock-face"> </div>
CSS
.inner-clock-face { position: absolute; top: 10%; left: 10%; width: 80%; height: 80%; background: #282828; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; z-index: 1; } .inner-clock-face::before { content: ''; position: absolute; top: 50%; border-radius: 18px; margin-left: -9px; margin-top: -6px; left: 50%; width: 16px; height: 16px; background: #4d4b63; z-index: 11; }
演示效果
在这个单元格中,我使用了三只手,它们是使用下面的 HTML 和 CSS 代码制作的。
HTML
<div class="hand hour-hand"></div> <div class="hand min-hand"></div> <div class="hand second-hand"></div>
CSS
.hand { width: 50%; right: 50%; height: 6px; background: #61afff; position: absolute; top: 50%; border-radius: 6px; transform-origin: 100%; transform: rotate(90deg); transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1); } .hand.hour-hand { width: 30%; z-index: 3; } .hand.min-hand { height: 3px; z-index: 10; width: 40%; } .hand.second-hand { background: #ee791a; width: 45%; height: 2px; }
演示效果
上面我们设计了整只手表,但这款手表还没有功能。这意味着这款手表的指针没有任何功能,也没有显示准确的时间。为此,我们需要使用 JavaScript 代码。
使用下面的 JavaScript,我已经给出了如何旋转这些手的说明。如果你了解基本的 JavaScript,你肯定会理解它。
我已经在下面充分解释了这段 JavaScript 代码是如何工作的。
JavaScript
const secondHand = document.querySelector('.second-hand'); const minsHand = document.querySelector('.min-hand'); const hourHand = document.querySelector('.hour-hand');
JavaScript
function setDate() { const now = new Date(); const seconds = now.getSeconds(); // second hand rotation const secondsDegrees = ((seconds / 60) * 360) + 90; secondHand.style.transform = `rotate(${secondsDegrees}deg)`; const mins = now.getMinutes(); // minutes hand rotation const minsDegrees = ((mins / 60) * 360) + ((seconds/60)*6) + 90; minsHand.style.transform = `rotate(${minsDegrees}deg)`; const hour = now.getHours(); // Hours hand rotation const hourDegrees = ((hour / 12) * 360) + ((mins/60)*30) + 90; hourHand.style.transform = `rotate(${hourDegrees}deg)`; }
关于秒针
JavaScript
const seconds = now.getSeconds(); // second hand rotation const secondsDegrees = ((seconds / 60) * 360) + 90; secondHand.style.transform = `rotate(${secondsDegrees}deg)`;
我已将秒针如何旋转存储在secondsDegrees
中,然后我使用rotate (${secondsDegrees} deg)
来旋转秒针 1 分钟等于 60 秒所以我除以60圆的一周是360度,所以我乘以360
关于分针
JavaScript
const mins = now.getMinutes(); // minutes hand rotation const minsDegrees = ((mins / 60) * 360) + ((seconds/60)*6) + 90; minsHand.style.transform = `rotate(${minsDegrees}deg)`;
我在minsDegrees
中存储了如何转动分钟的指针然后我使用(${minsDegrees]deg
위의 데모에서 볼 수 있듯이 저는 이 시계 주위에 테두리를 사용하여 코드 테두리를 만들었습니다: 7px solid #282828
. 더 명확하게 하기 위해 box-shadow
를 사용합니다. border-radius 50%
는 시계를 둥근 모양으로 만듭니다. 나는 또한 30 rem의 높이와 너비를 사용했습니다. 이 시계를 더 크게 만들고 싶다면 크기를 늘릴 수 있습니다.
HTML
setInterval(setDate, 1000); setDate();
CSS
rrreee
JavaScript🎜rrreee🎜 초침이 어떻게 회전하는지 secondsDegrees
에 저장한 다음 rotate (${secondsDegrees} deg)
를 사용하여 초침을 회전시킵니다. 1분은 60초이므로 다음과 같이 나눕니다. 60일주는 360도이므로 360을 곱합니다🎜🎜분침에 대해서
🎜
JavaScript🎜rrreee🎜I' minsDegrees
의 m은 분침을 돌리는 방법을 저장한 다음 (${minsDegrees]deg
)를 사용하여 분침을 돌렸습니다. 1시간은 60분이므로 60으로 나눴습니다. 분과 함께 초침 위치를 추가합니다. 분침은 초에 따라 올바른 위치에 있기 때문입니다. 🎜🎜JavaScript🎜rrreee🎜🎜🎜🎜추천 학습: 🎜HTML/CSS 비디오 튜토리얼🎜, 🎜JS 비디오 튜토리얼🎜🎜
위 내용은 초급 기사: HTML, CSS 및 JS(코드 포함)를 사용하여 멋진 검은색 아날로그 시계를 만드는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!