這篇文章主要介紹了JavaScript每天定時(shí)更換皮膚樣式的方法,涉及javascript針對(duì)時(shí)間及css樣式的相關(guān)操作技巧,需要的朋友可以參考下
本文實(shí)例講述了JavaScript每天定時(shí)更換皮膚樣式的方法。分享給大家供大家參考。具體分析如下:
這段js代碼通過每天在不同時(shí)段自動(dòng)更換網(wǎng)頁(yè)調(diào)用的樣式表,實(shí)現(xiàn)更換皮膚的功能。
- <script type="text/JavaScript">
- <!--
- function getStylesheet() {
- var currentTime = new Date().getHours();
- if (0 <= currentTime&¤tTime < 5) {
- document.write("<link rel='stylesheet' href='night.css' type='text/css'>");
- }
- if (5 <= currentTime&¤tTime < 11) {
- document.write("<link rel='stylesheet' href='morning.css' type='text/css'>");
- }
- if (11 <= currentTime&¤tTime < 16) {
- document.write("<link rel='stylesheet' href='day.css' type='text/css'>");
- }
- if (16 <= currentTime&¤tTime < 22) {
- document.write("<link rel='stylesheet' href='evening.css' type='text/css'>");
- }
- if (22 <= currentTime&¤tTime <= 24) {
- document.write("<link rel='stylesheet' href='night.css' type='text/css'>");
- }
- }
- getStylesheet();
- -->
- </script>
- <noscript>
- <link href="main.css" rel="stylesheet" type="text/css">
- </noscript>
希望本文所述對(duì)大家的javascript程序設(shè)計(jì)有所幫助。
新聞熱點(diǎn)
疑難解答
圖片精選