久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

js實(shí)現(xiàn)特別簡(jiǎn)單的鐘表效果

瀏覽:94日期:2024-04-19 18:35:03

本文實(shí)例為大家分享了js實(shí)現(xiàn)鐘表效果的具體代碼,供大家參考,具體內(nèi)容如下

js實(shí)現(xiàn)特別簡(jiǎn)單的鐘表效果

<div class='clock'> <div class='circle'></div> <div class='hour'></div> <div class='minutes'></div> <div class='seconds'></div> <!-- 添加數(shù)字1-12 --> <div class='nums'> </div> </div>

* { margin: 0; padding: 0; } .clock { position: relative; width: 200px; height: 200px; border: solid 14px rgb(247, 129, 149); border-radius: 50%; margin: 100px auto; background: linear-gradient( rgb(190, 155, 223),pink); } .circle{ position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 12px; height: 12px; background-color: black; border-radius: 50%; /* 優(yōu)先顯示它 */ z-index: 5; } .hour { position: absolute; left: 49.5%; top: 48px; width: 4px; height: 50px; background-color: blue; /* steps(60)--分60步走*/ animation: run 21600s steps(60) infinite; /* 繞著底部旋轉(zhuǎn) */ transform-origin: bottom; z-index: 3; } .minutes { position: absolute; left: 49.5%; top: 28px; width: 3px; height: 70px; background-color: rgb(240, 83, 83); animation: run 3600s steps(60) infinite; transform-origin: bottom; z-index: 2; } .seconds { position: absolute; left: 50%; top: 2px; width: 2px; height: 96px; background-color: pink; animation: run 60s steps(60) infinite; transform-origin: bottom; } .ps { width: 100%; height: 100%; } .number { position: absolute; left: 50%; width: 10px; height: 98px; transform-origin: bottom; color: rgb(230, 53, 156); font-weight: bold; font-size: 20px; } .number:last-child { left: 47%; } @keyframes run { 0% { transform: rotate(0); } 100% { transform: rotate(360deg) } }

<script> var nums = document.querySelector(’.nums’) var dd = 30; for (var i = 1; i < 13; i++) { // 創(chuàng)建一個(gè)div保存數(shù)字 var number = document.createElement(’div’); number.className = ’number’; // 下標(biāo)就是對(duì)應(yīng)的數(shù)字1-12 number.innerText = i; // 追加到頁(yè)面中 nums.appendChild(number); // 數(shù)字分別旋轉(zhuǎn)對(duì)應(yīng)的角度 number.style.transform = 'rotate(' + dd + 'deg)'; // 確定要旋轉(zhuǎn)的度數(shù)----30deg/60deg/90deg..... if (dd < 360) { dd += 30; } }</script>

更多JavaScript時(shí)鐘特效點(diǎn)擊查看:JavaScript時(shí)鐘特效專(zhuān)題

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 海口市| 从江县| 桂林市| 翁牛特旗| 乌兰浩特市| 芒康县| 永胜县| 金华市| 肥东县| 泰州市| 赤城县| 蒙自县| 东阿县| 焦作市| 江安县| 抚松县| 类乌齐县| 繁昌县| 龙南县| 腾冲县| 浑源县| 莒南县| 宝坻区| 沙坪坝区| 高雄县| 鄄城县| 榆中县| 榆树市| 宜兴市| 邹城市| 龙州县| 赤壁市| 宁德市| 广丰县| 台湾省| 张家口市| 新巴尔虎左旗| 综艺| 聂荣县| 右玉县| 贺州市|