侧边动态时钟与温馨问候语

综合评论1,707,600字数 276阅读0分55秒

步骤一:

复制下面代码

步骤二:

将下面的代码放到:外观->>小工具->>自定义HTML的里面然后将小工具放到你想放到的位置

<div class="greeting-container">
    <div class="clock-face">
        <div class="clock-time" id="clock-time"></div>
    </div>
    <div class="greeting-text">
        <div class="greeting" id="greeting"></div>
        <div class="tip" id="tip"></div>
    </div>
</div>
<style>
    .greeting-container {
        width: 100%;
        height: 150px;
        background-color: #f5f5f5;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        font-family: Arial, sans-serif;
    }
    .clock-face {
        width: 100px;
        height: 100px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .clock-time {
        font-size: 24px;
        font-weight: bold;
        color: #333;
    }
    .greeting-text {
        flex: 1;
        margin-left: 20px;
    }
    .greeting {
        font-size: 20px;
        color: #007bff;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .tip {
        font-size: 16px;
        color: #666;
        line-height: 1.5;
    }
</style>
<script>
    function updateClock() {
        const now = new Date();
        const hours = now.getHours().toString().padStart(2, '0');
        const minutes = now.getMinutes().toString().padStart(2, '0');
        const seconds = now.getSeconds().toString().padStart(2, '0');
        document.getElementById('clock-time').textContent = `${hours}:${minutes}:${seconds}`;
    }

    function updateGreeting() {
        fetch('https://api.ahfi.cn/api/getGreetingMessage?type=json')
            .then(response => response.json())
            .then(data => {
                document.getElementById('greeting').textContent = data.data.greeting;
                document.getElementById('tip').textContent = data.data.tip;
            })
            .catch(error => console.error('Error fetching the greeting message:', error));
    }

    document.addEventListener('DOMContentLoaded', function() {
        updateClock();
        updateGreeting();
        setInterval(updateClock, 1000);
        setInterval(updateGreeting, 60000);
    });
</script>

  文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/596.html

继续阅读
添加IP标签小工具
添加IP标签小工具 综合

添加IP标签小工具

步骤一:复制下面代码步骤二:在后台—》外观—》小工具—》首页-底部全宽度,自定义HTML添加下面代码即可。<div id="wiiuii1"> <img src="https://w...
分享超强安卓工具软件 ,多种资源搜索与百种工具免费使用
分享超强安卓工具软件 ,多种资源搜索与百种工具免费使用 综合

分享超强安卓工具软件 ,多种资源搜索与百种工具免费使用

软件特点:是一款重量级的资源搜索神器,功能多到乱七八糟,包含十多种资源搜索功能和百种工具,还拥有磁力解析下载功能等。支持安卓设备。功能介绍:资源搜索功能丰富,包括搜磁力、搜影视、搜音乐、搜网盘、找网站...
  • 本文由 admin 发表于 2024年8月10日 19:26:13
  • 转载请务必保留本文链接:https://bbs.50-0.cn/596.html
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定