【前端】实现时钟网页

【前端】实现时钟网页


文章目录

项目介绍

时钟显示在网页中央,并且使网页能够切换白天和夜晚两种模式。搭建基本的html结构,动态得到实时的时,分,秒

通过Date()函数获得。将得到的数字根据逻辑,绑定

给各div结构,实行动态旋转。点击按钮,改变背景颜色

给出最终的HTML代码。

代码

html 复制代码
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>现代风格时钟</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            transition: background-color 0.5s;
        }
        .clock-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .clock {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: white;
            position: relative;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        .hand {
            position: absolute;
            bottom: 50%;
            left: 50%;
            transform-origin: 50% 100%;
            border-radius: 5px;
        }
        .hour {
            width: 4px;
            height: 50px;
            background-color: #333;
        }
        .minute {
            width: 3px;
            height: 70px;
            background-color: #666;
        }
        .second {
            width: 2px;
            height: 90px;
            background-color: #e74c3c;
        }
        .center {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #333;
            transform: translate(-50%, -50%);
        }
        .digital-time {
            font-size: 48px;
            margin-top: 20px;
            color: #333;
        }
        .mode-switch {
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .mode-switch:hover {
            background-color: #555;
        }
        .night-mode {
            background-color: #222;
        }
        .night-mode .clock {
            background-color: #333;
            box-shadow: 0 0 20px rgba(255,255,255,0.1);
        }
        .night-mode .hour, .night-mode .minute {
            background-color: #fff;
        }
        .night-mode .second {
            background-color: #e74c3c;
        }
        .night-mode .center {
            background-color: #fff;
        }
        .night-mode .digital-time {
            color: #fff;
        }
        .night-mode .mode-switch {
            background-color: #f0f0f0;
            color: #333;
        }
        .night-mode .mode-switch:hover {
            background-color: #ddd;
        }
    </style>
</head>
<body>
    <div class="clock-container">
        <div class="clock">
            <div class="hand hour"></div>
            <div class="hand minute"></div>
            <div class="hand second"></div>
            <div class="center"></div>
        </div>
        <div class="digital-time"></div>
        <button class="mode-switch">Dark mode</button>
    </div>

    <script>
        function updateClock() {
            const now = new Date();
            const hours = now.getHours();
            const minutes = now.getMinutes();
            const seconds = now.getSeconds();

            const hourDeg = (hours % 12 + minutes / 60) * 30;
            const minuteDeg = (minutes + seconds / 60) * 6;
            const secondDeg = seconds * 6;

            document.querySelector('.hour').style.transform = `translateX(-50%) rotate(${hourDeg}deg)`;
            document.querySelector('.minute').style.transform = `translateX(-50%) rotate(${minuteDeg}deg)`;
            document.querySelector('.second').style.transform = `translateX(-50%) rotate(${secondDeg}deg)`;

            const digitalTime = `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')} ${hours >= 12 ? 'PM' : 'AM'}`;
            document.querySelector('.digital-time').textContent = digitalTime;
        }

        function toggleMode() {
            document.body.classList.toggle('night-mode');
            const button = document.querySelector('.mode-switch');
            button.textContent = document.body.classList.contains('night-mode') ? 'Light mode' : 'Dark mode';
        }

        setInterval(updateClock, 1000);
        updateClock(); // 立即更新一次,避免延迟

        document.querySelector('.mode-switch').addEventListener('click', toggleMode);
    </script>
</body>
</html>

效果图

相关推荐
CoolerWu5 小时前
TRAE SOLO实战成功展示&总结:一个所见即所得的笔记软体
前端·javascript
Cassie燁5 小时前
el-button源码解读1——为什么组件最外层套的是Vue内置组件Component
前端·vue.js
vx_bscxy3225 小时前
告别毕设焦虑!Python 爬虫 + Java 系统 + 数据大屏,含详细开发文档 基于web的图书管理系统74010 (上万套实战教程,赠送源码)
java·前端·课程设计
北极糊的狐5 小时前
Vue3 子组件修改父组件传递的对象并同步的方法汇总
前端·javascript·vue.js
spionbo5 小时前
Vue3 前端分页功能实现的技术方案及应用实例解析
前端
AI绘画小335 小时前
Web 安全核心真相:别太相信任何人!40 个漏洞挖掘实战清单,直接套用!
前端·数据库·测试工具·安全·web安全·网络安全·黑客
7***n755 小时前
前端设计模式详解
前端·设计模式·状态模式
用户47949283569155 小时前
Vite 中 SVG 404 的幕后黑手:你真的懂静态资源处理吗?
前端·vite
未来之窗软件服务5 小时前
幽冥大陆(三十五)S18酒店门锁SDK go语言——东方仙盟筑基期
java·前端·golang·智能门锁·仙盟创梦ide·东方仙盟·东方仙盟sdk
卸任5 小时前
解密Flex布局:为什么flex:1仍会导致内容溢出
前端·css·flexbox