純js+css實(shí)現(xiàn)在線(xiàn)時(shí)鐘
本文實(shí)例為大家分享了js+css實(shí)現(xiàn)在線(xiàn)時(shí)鐘的具體代碼,供大家參考,具體內(nèi)容如下
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>時(shí)鐘</title>
<style type="text/css">
*{
padding: 0;
margin: 0;
}
.wrap{
position: absolute;
width: 200px;
height: 200px;
border: 2px solid;
background-color: pink;
border-radius: 50%;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
.wrap>ul{
list-style: none;
}
.wrap>ul>li{
position: absolute;
left: 99px;
top: 0;
width: 2px;
height: 10px;
background-color: black;
transform-origin: center 100px;
}
.wrap>ul>li:nth-child(5n+1){
height: 15px;
}
.wrap > .hour{
position: absolute;
left: 97px;
top:70px ;
width: 6px;
height: 30px;
background: black;
transform-origin: center bottom;
}
.wrap > .min{
position: absolute;
left: 98px;
top: 50px;
width: 4px;
height: 50px;
background: gray;
transform-origin: center bottom;
}
.wrap > .sec{
position: absolute;
left: 99px;
top: 30px;
width: 2px;
height: 70px;
background: red;
transform-origin: center bottom;
}
.wrap > .center{
position: absolute;
left: 90px;
top: 90px;
width: 20px;
height: 20px;
border-radius:50% ;
background: black;
}
</style>
</head>
<body>
<div class="wrap">
<ul></ul>
<div class="hour"></div>
<div class="min"></div>
<div class="sec"></div>
<div class="center"></div>
</div>
</body>
<script type="text/javascript">
window.onload =function(){
var hourNode =document.querySelector(".wrap > .hour");
var minNode =document.querySelector(".wrap > .min");
var secNode =document.querySelector(".wrap > .sec");
var ulNode =document.querySelector(".wrap>ul");
var styleNode =document.createElement('style');
var liHtml ='';
var styleHtml ='';
for(var i=0;i<60;i++){
liHtml += "<li></li>";
styleHtml+=".wrap>ul>li:nth-child("+(i+1)+"){transform: rotate("+(i*6)+"deg);}"
}
ulNode.innerHTML =liHtml;
styleNode.innerHTML =styleHtml;
document.querySelector('head').appendChild(styleNode);
moveTime();
setInterval(moveTime,1000);
function moveTime(){
var date =new Date();
var sec =date.getSeconds();
var min =date.getMinutes()+sec/60;
var hour =date.getHours()+min/60;
hourNode.style.transform ="rotate("+(hour*30)+"deg)";
minNode.style.transform ="rotate("+(min*6)+"deg)";
secNode.style.transform ="rotate("+(sec*6)+"deg)";
}
}
</script>
</html>

實(shí)現(xiàn)要點(diǎn)
1、transform-origin的基本點(diǎn)的應(yīng)用
2、批量處理html和樣式的信息
3、指證位置進(jìn)行了優(yōu)化(時(shí)針與小時(shí)和分針位置有關(guān),分針與分和秒針位置有關(guān))。
新增居中方式:
開(kāi)啟絕對(duì)定位 left:50%;top :50%;transform:translate(50%,50%);
更多JavaScript時(shí)鐘特效點(diǎn)擊查看:JavaScript時(shí)鐘特效專(zhuān)題
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
JS訪(fǎng)問(wèn)對(duì)象兩種方式區(qū)別解析
這篇文章主要介紹了JS訪(fǎng)問(wèn)對(duì)象兩種方式區(qū)別解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-08-08
js對(duì)圖片base64編碼字符串進(jìn)行解碼并輸出圖像示例
這篇文章主要介紹了js對(duì)圖片base64編碼字符串進(jìn)行解碼并輸出圖像的具體實(shí)現(xiàn),大家可以參考下面的示例2014-03-03
html a標(biāo)簽-超鏈接中confirm方法使用介紹
confirm可以彈出確定取消對(duì)話(huà)框,然后根據(jù)用戶(hù)的選擇執(zhí)行相應(yīng)的操作,接下來(lái)介紹實(shí)現(xiàn)過(guò)程,需要了解的朋友可以參考下2013-01-01
JS實(shí)現(xiàn)網(wǎng)頁(yè)上隨機(jī)產(chǎn)生超鏈接地址的方法
這篇文章主要介紹了JS實(shí)現(xiàn)網(wǎng)頁(yè)上隨機(jī)產(chǎn)生超鏈接地址的方法,涉及JavaScript隨機(jī)數(shù)的相關(guān)使用技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-11-11
javascript實(shí)現(xiàn)的淘寶旅行通用日歷組件用法實(shí)例
這篇文章主要介紹了javascript實(shí)現(xiàn)的淘寶旅行通用日歷組件,以實(shí)例形式分析了該日歷組件的相關(guān)設(shè)置及使用技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-08-08

