夜間模版 CSS 代碼示例文章:
隨著現代科技的不斷發展,我們越來越依賴電子設備來獲取信息和娛樂。而夜間模式則是為了更好地保護我們的眼睛,提高我們的睡眠質量,讓我們在晚上也能享受一個更舒適和平靜的環境。下面我將介紹一種簡單的夜間模版 CSS 代碼,讓您在晚上也能輕松擁有一個美麗的夜空和舒適的環境。
首先,我們需要在 HTML 文件中包含一個標簽,以使 CSS 樣式能夠被正確地渲染。在這個例子中,我們將使用 `body` 標簽來覆蓋整個頁面。
```html
<!DOCTYPE html>
<html>
<head>
<title>夜間模式</title>
<style>
body {
background-color: #f2f2f2; /* 替換成您的夜間模式顏色代碼 */
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
</head>
<body>
<h1>夜間模式示例</h1>
<p>歡迎來到夜間模式。</p>
</body>
</html>
接下來,我們需要為 CSS 樣式添加一些額外的效果,以使在夜間模式下,我們的頁面更加美麗和舒適。
```css
body {
font-family: Arial, sans-serif;
.night {
position: relative;
width: 100%;
height: 100%;
.night::before,
.night::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #f2f2f2;
border-radius: 50%;
.night::after {
left: 50%;
transform: translateX(-50%);
.night h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-size: 4em;
font-weight: bold;
.night p {
position: absolute;
top: 25%;
left: 50%;
transform: translate(-50%, -25%);
text-align: center;
font-size: 1.5em;
.night .night-button {
display: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #333;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 1.2em;
.night .night-button:hover {
background-color: #555;
.night .night-button:active,
.night .night-button:focus {
background-color: #333;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 1.2em;
.night .night-button::text {
font-size: 1.2em;
font-weight: bold;
color: #fff;
這些代碼將在您的瀏覽器中顯示一個美麗的夜空和舒適的環境。您可以使用這些 CSS 代碼來改變顏色、字體大小和背景顏色,以根據您的喜好調整夜晚的氛圍。此外,您還可以使用這些 CSS 代碼來創建一個按鈕,以便您可以輕松地切換到夜間模式,從而讓您的夜晚更加美麗和舒適。