純js+css實(shí)現(xiàn)在線時(shí)鐘
本文實(shí)例為大家分享了js+css實(shí)現(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í)鐘特效專題
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. 前端從瀏覽器的渲染到性能優(yōu)化2. 讀大數(shù)據(jù)量的XML文件的讀取問(wèn)題3. 解析原生JS getComputedStyle4. css代碼優(yōu)化的12個(gè)技巧5. PHP循環(huán)與分支知識(shí)點(diǎn)梳理6. ASP基礎(chǔ)入門(mén)第三篇(ASP腳本基礎(chǔ))7. 無(wú)線標(biāo)記語(yǔ)言(WML)基礎(chǔ)之WMLScript 基礎(chǔ)第1/2頁(yè)8. ASP刪除img標(biāo)簽的style屬性只保留src的正則函數(shù)9. 利用CSS3新特性創(chuàng)建透明邊框三角10. ASP實(shí)現(xiàn)加法驗(yàn)證碼
