js+css实现指针走动显示当前时间的壁挂时钟代码

代码语言:html

所属分类:布局界面

代码描述:js+css实现指针走动显示当前时间的壁挂时钟代码

代码标签: js css 指针 走动 显示 当前 时间 壁挂 时钟 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
  
  
<style>
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    color: #fff;
}

body{
    /*background: rgb(33,33,34);*/
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    /*background: rgba(255,255,255,0.05);*/
    background:gray;
    border-radius: 50%;
    padding: 10px;
    outline: 10px solid #3b3831;
    outline-offset: 5px;
    box-shadow: 0 0 80px #000;
}

.clock{
    position: relative;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 20px solid #181229;
    outline: 10px solid rgb(108,108,108);
    outline-offset: -20px;
}

.clock span{
    position: absolute;
    transform: rotate(calc(30deg * var(--j)));
    inset: 20px;
    text-align: center;
}

.clock span b{
    transform: rotate(calc(-30deg * var(--j)));
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    height: 50px;
    width: 50px;
}

.clock::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    z-index: 1;
}

.hand{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hand i{
    position: absolute;
    background: var(--clr);
    height: var(--ht);
    width: var(--wt);
    z-index: 0;
}
</style>


<body>
    <div class="container">
        <div class="clock">
            <div style="--clr:#ff3d58;--ht:120px;--wt:9px;" class="hand" id="hour"><i></i></div>
            <div style="--clr:#00a6ff;--ht:150px;--wt:7px;&.........完整代码请登录后点击上方下载按钮下载查看

网友评论0