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

您的位置:首頁技術文章
文章詳情頁

用JavaScript實現簡單網頁時鐘

瀏覽:84日期:2023-12-02 14:00:40

利用JavaScript實現網頁時鐘,效果如下圖所示:

用JavaScript實現簡單網頁時鐘

首先在body中完成表盤、指針的資源載入:

<div><img src='http://www.baoyu77737.com/image/clockface.jpg' alt=''></div><hr ><hr id='min'><hr id='second'>

設置CSS樣式:

<style>body{ margin: 0;}div{ margin: 0 auto; width: 600px; height: 600px;}#hour{ background-color: black; width: 130px; height: 10px; position: fixed; top: 295px; left: 50%; margin-left: -65px;}#min{ background-color: red; width: 200px; height: 8px; position: fixed; top: 296px; left: 50%; margin-left: -100px;}#second{ background-color: yellow; width: 270px; height: 5px; position: fixed; top: 297.5px; left: 50%; margin-left: -135px;}</style>

最后是JS代碼部分,使用循環定時器setInterval()每秒調用一次主函數,主函數內使用new Date()創建時間對象,分別使用 .getHours();.getMinutes();.getSeconds()獲得當前的時分秒,然后利用CSS自帶動畫-旋轉改變指針的角度:

setInterval(watch,1000);var anjleSeconds=0,anjleMin=0,anjleHours=0;function watch() {var Time= new Date();anjleSeconds=Time.getSeconds()/60*360+90;anjleMin=Time.getMinutes()/60*360+90;anjleHours=nowHours/12*360+90;document.getElementById('second').style.transform='rotate('+anjleSeconds+'deg)';document.getElementById('min').style.transform='rotate('+anjleMin+'deg)';document.getElementById('hour').style.transform='rotate('+anjleHours+'deg)'; }

目前存在的問題是,時分秒指針由于使用的是hr標簽表示,所以存在兩端一樣長的問題。

完整代碼如下:

<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Title</title> <style>body{ margin: 0;}div{ margin: 0 auto; width: 600px; height: 600px;}#hour{ background-color: black; width: 130px; height: 10px; position: fixed; top: 295px; left: 50%; margin-left: -65px;}#min{ background-color: red; width: 200px; height: 8px; position: fixed; top: 296px; left: 50%; margin-left: -100px;}#second{ background-color: yellow; width: 270px; height: 5px; position: fixed; top: 297.5px; left: 50%; margin-left: -135px;} </style></head><body><div><img src='http://www.baoyu77737.com/image/clockface.jpg' alt=''></div><hr ><hr id='min'><hr id='second'><script> setInterval(watch,1000); var anjleSeconds=0,anjleMin=0,anjleHours=0; function watch() {var Time= new Date();anjleSeconds=Time.getSeconds()/60*360+90;anjleMin=Time.getMinutes()/60*360+90;anjleHours=Time.getHours()/12*360+90;document.getElementById('second').style.transform='rotate('+anjleSeconds+'deg)';document.getElementById('min').style.transform='rotate('+anjleMin+'deg)';document.getElementById('hour').style.transform='rotate('+anjleHours+'deg)'; }</script></body></html>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: JavaScript
相關文章:
主站蜘蛛池模板: 湘阴县| 日土县| 大连市| 栾川县| 桐庐县| 林芝县| 谷城县| 赣榆县| 梅河口市| 邢台市| 元朗区| 开阳县| 习水县| 广西| 田东县| 海兴县| 简阳市| 延庆县| 新郑市| 和静县| 永康市| 南岸区| 萨嘎县| 鸡泽县| 乡宁县| 镇平县| 景东| 泽州县| 手游| 峨山| 呼和浩特市| 鄂尔多斯市| 浠水县| 东宁县| 禹城市| 四子王旗| 克拉玛依市| 尉犁县| 淅川县| 遵化市| 宽甸|