欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

時鐘css代碼大全

方一強2年前11瀏覽0評論

時鐘是常見的網(wǎng)頁設(shè)計元素之一,用于展示時間和提醒用戶時間的流逝。CSS可以使時鐘呈現(xiàn)出不同的樣式和效果,以下是時鐘CSS代碼大全。

.clock {
width: 150px;
height: 150px;
border-radius: 50%;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
}
.clock .hour {
width: 40%;
height: 7px;
background-color: #000;
transform-origin: bottom center;
}
.clock .minute {
width: 60%;
height: 5px;
background-color: #000;
transform-origin: bottom center;
}
.clock .second {
width: 80%;
height: 3px;
background-color: #f00;
transform-origin: bottom center;
}
.clock .hands {
width: 100%;
height: 100%;
position: relative;
}
.clock .number {
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
position: absolute;
font-size: 16px;
font-weight: bold;
color: #000;
transform-origin: center center;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.clock .number:nth-child(1) {
transform: rotate(30deg) translate(45px) rotate(-30deg);
}
.clock .number:nth-child(2) {
transform: rotate(60deg) translate(45px) rotate(-60deg);
}
.clock .number:nth-child(3) {
transform: rotate(90deg) translate(45px) rotate(-90deg);
}
.clock .number:nth-child(4) {
transform: rotate(120deg) translate(45px) rotate(-120deg);
}
.clock .number:nth-child(5) {
transform: rotate(150deg) translate(45px) rotate(-150deg);
}
.clock .number:nth-child(6) {
transform: rotate(180deg) translate(45px) rotate(-180deg);
}
.clock .number:nth-child(7) {
transform: rotate(210deg) translate(45px) rotate(-210deg);
}
.clock .number:nth-child(8) {
transform: rotate(240deg) translate(45px) rotate(-240deg);
}
.clock .number:nth-child(9) {
transform: rotate(270deg) translate(45px) rotate(-270deg);
}
.clock .number:nth-child(10) {
transform: rotate(300deg) translate(45px) rotate(-300deg);
}
.clock .number:nth-child(11) {
transform: rotate(330deg) translate(45px) rotate(-330deg);
}
.clock .number:nth-child(12) {
transform: rotate(360deg) translate(45px) rotate(-360deg);
}

以上代碼為一個簡單的時鐘的CSS代碼,通過賦予不同的樣式和動畫效果,可以創(chuàng)造出更加獨特的時鐘。使用CSS可以使時鐘體驗更加生動有趣,增加用戶的使用體驗。