App下載

HTML+CSS+JS制作圣誕祝福網(wǎng)頁(yè)教程(附源碼)

編程獅W3Cschool 2024-11-28 10:02:37 瀏覽數(shù) (1374)
反饋

簡(jiǎn)介

在這個(gè)教程中,我們將學(xué)習(xí)如何使用HTML、CSS和JavaScript來(lái)創(chuàng)建一個(gè)充滿(mǎn)節(jié)日氣氛的圣誕祝福網(wǎng)頁(yè)。這個(gè)網(wǎng)頁(yè)將包括一個(gè)動(dòng)態(tài)的圣誕樹(shù)、飄落的雪花和閃爍的裝飾物,以及一個(gè)顯示“圣誕快樂(lè)!”的消息。

圣誕節(jié)祝福代碼、雪花、圣誕樹(shù)源碼

準(zhǔn)備工作

在開(kāi)始之前,請(qǐng)確保你有基本的HTML、CSSJavaScript知識(shí)。你將需要一個(gè)文本編輯器來(lái)編寫(xiě)代碼,比如Notepad++、Sublime Text、Visual Studio Code,或者免費(fèi)AI編程助手豆包 MarsCode。

如果你不具備這些基礎(chǔ)請(qǐng)移步 ——&前端開(kāi)發(fā):零基礎(chǔ)入門(mén)到項(xiàng)目實(shí)戰(zhàn)

步驟1:創(chuàng)建HTML結(jié)構(gòu)

首先,我們需要?jiǎng)?chuàng)建網(wǎng)頁(yè)的基本結(jié)構(gòu)。打開(kāi)你的文本編輯器,輸入以下代碼:

<!DOCTYPE HTML>
<html>
<head>
    <title>圣誕祝福 - 編程獅(w3cschool.cn)</title>
    <meta charset="utf-8">
</head>
<body>
    <div class="app">
        <!-- 圣誕樹(shù)將在這里 -->
    </div>
    <div class="message">圣誕快樂(lè)!</div> <!-- 消息文本 -->
</body>
</html>

這段代碼定義了網(wǎng)頁(yè)的標(biāo)題、字符集和基本的HTML結(jié)構(gòu)。

步驟2:添加CSS樣式

接下來(lái),我們將添加CSS來(lái)設(shè)計(jì)網(wǎng)頁(yè)的外觀。在<head>標(biāo)簽內(nèi)添加<style>標(biāo)簽,并輸入以下代碼:

/* 設(shè)置整個(gè)頁(yè)面的基本樣式 */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: #000;
    overflow: hidden;
    position: relative;
}


/* 應(yīng)用程序容器的樣式 */
.app {
    text-align: center;
    margin: 10px;
}


/* 圣誕樹(shù)的樣式 */
.christmas-tree {
    position: absolute;
    width: 200px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* 圣誕樹(shù)枝干的通用樣式 */
.christmas-tree .branch {
    position: absolute;
    background-color: #008000;
    border-radius: 50% 50% 0 0;
}


/* 圣誕樹(shù)樹(shù)干的樣式 */
.christmas-tree .trunk {
    width: 40px;
    height: 80px;
    background-color: #8B4513;
    position: absolute;
    bottom: 0;
    left: 80px;
    border-radius: 5px;
}


/* 圣誕樹(shù)星星的樣式 */
.christmas-tree .star {
    position: absolute;
    top: -20px;
    left: 80px;
    width: 40px;
    height: 40px;
    background-color: gold;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: star-twinkle 2s infinite alternate;
}


/* 圣誕樹(shù)裝飾物的樣式 */
.christmas-tree .ornament {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: ornament-twinkle 2s infinite alternate;
}


/* 消息文本的樣式 */
.message {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 10px white;
    animation: fadeInOut 4s infinite;
}


/* 雪花效果 */
.snowflake {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}


/* 動(dòng)畫(huà) */
@keyframes star-twinkle {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}


@keyframes ornament-twinkle {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}


@keyframes fall {
    0% { top: -10px; opacity: 0.8; }
    100% { top: 100vh; opacity: 0; }
}


@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

這段代碼定義了網(wǎng)頁(yè)的所有視覺(jué)元素,包括圣誕樹(shù)、裝飾物、星星、雪花和消息文本的樣式。

步驟3:構(gòu)建圣誕樹(shù)

<div class="app">內(nèi)添加圣誕樹(shù)的結(jié)構(gòu):

<div class="christmas-tree">
    <div class="branch top"></div> <!-- 頂部枝干 -->
    <div class="branch middle"></div> <!-- 中部枝干 -->
    <div class="branch bottom"></div> <!-- 底部枝干 -->
    <div class="trunk"></div> <!-- 樹(shù)干 -->
    <div class="star"></div> <!-- 星星 -->
    <div class="ornament" style="top: 60px; left: 60px;"></div> <!-- 裝飾物1 -->
    <div class="ornament" style="top: 100px; left: 140px;"></div> <!-- 裝飾物2 -->
    <div class="ornament" style="top: 140px; left: 100px;"></div> <!-- 裝飾物3 -->
    <div class="ornament" style="top: 180px; left: 180px;"></div> <!-- 裝飾物4 -->
    <div class="ornament" style="top: 220px; left: 20px;"></div> <!-- 裝飾物5 -->
</div>

這段代碼定義了圣誕樹(shù)的各個(gè)部分,包括枝干、樹(shù)干、星星和裝飾物。

步驟4:添加 JavaScript

最后,我們需要添加一些 JavaScript 代碼來(lái)創(chuàng)建飄落的雪花效果。在</body>標(biāo)簽之前添加以下代碼:

<script>
    // 創(chuàng)建雪花
    function createSnowflakes(num) {
        for (let i = 0; i < num; i++) {
            const snowflake = document.createElement('div'); // 創(chuàng)建一個(gè) div 元素
            snowflake.classList.add('snowflake'); // 添加雪花類(lèi)
            snowflake.style.left = Math.random() * 100 + 'vw'; // 隨機(jī)水平位置
            snowflake.style.animationDuration = Math.random() * 2 + 3 + 's'; // 隨機(jī)動(dòng)畫(huà)持續(xù)時(shí)間
            document.body.appendChild(snowflake); // 將雪花添加到頁(yè)面
        }
    }


    // 調(diào)用函數(shù)創(chuàng)建雪花
    createSnowflakes(100);
</script>

這段代碼將創(chuàng)建100個(gè)雪花,并隨機(jī)分布在頁(yè)面上,模擬雪花飄落的效果。

完成

現(xiàn)在,你已經(jīng)完成了圣誕祝福網(wǎng)頁(yè)的制作。將你的代碼保存為.html文件,然后用瀏覽器打開(kāi)它,你就可以看到一個(gè)充滿(mǎn)節(jié)日氣氛的圣誕樹(shù)和飄落的雪花了。你可以根據(jù)自己的喜好調(diào)整樣式和動(dòng)畫(huà),創(chuàng)造一個(gè)獨(dú)一無(wú)二的圣誕祝福網(wǎng)頁(yè)。祝你編程愉快!

最后附上完整代碼:

<!DOCTYPE HTML>
<html>


<head>
    <title>圣誕祝福 - 編程獅(w3cschool.cn)</title>
    <meta charset="utf-8">
    <style>
        /* 設(shè)置整個(gè)頁(yè)面的基本樣式 */
        html,
        body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            border: 0;
            background: #000; /* 黑色背景 */
            overflow: hidden; /* 隱藏溢出內(nèi)容 */
            position: relative; /* 使子元素可以相對(duì)于此元素定位 */
        }


        /* 應(yīng)用程序容器的樣式 */
        .app {
            text-align: center; /* 文本居中對(duì)齊 */
            margin: 10px; /* 外邊距 */
        }


        /* 圣誕樹(shù)的樣式 */
        .christmas-tree {
            position: absolute; /* 絕對(duì)定位 */
            margin: 0; /* 沒(méi)有外邊距 */
            width: 200px; /* 寬度 */
            height: 300px; /* 高度 */
            top: 50%; /* 垂直居中 */
            left: 50%; /* 水平居中 */
            transform: translate(-50%, -50%); /* 精確居中 */
        }


        /* 圣誕樹(shù)枝干的通用樣式 */
        .christmas-tree .branch {
            position: absolute; /* 絕對(duì)定位 */
            background-color: #008000; /* 綠色背景 */
            border-radius: 50% 50% 0 0; /* 上半部分圓角 */
        }


        /* 頂部枝干的樣式 */
        .christmas-tree .branch.top {
            width: 160px; /* 寬度 */
            height: 100px; /* 高度 */
            top: 0; /* 從頂部開(kāi)始 */
            left: 20px; /* 從左邊偏移 */
        }


        /* 中部枝干的樣式 */
        .christmas-tree .branch.middle {
            width: 200px; /* 寬度 */
            height: 120px; /* 高度 */
            top: 100px; /* 從頂部偏移 */
            left: 0; /* 從左邊開(kāi)始 */
        }


        /* 底部枝干的樣式 */
        .christmas-tree .branch.bottom {
            width: 240px; /* 寬度 */
            height: 140px; /* 高度 */
            top: 220px; /* 從頂部偏移 */
            left: -20px; /* 從左邊偏移 */
        }


        /* 圣誕樹(shù)樹(shù)干的樣式 */
        .christmas-tree .trunk {
            width: 40px; /* 寬度 */
            height: 80px; /* 高度 */
            background-color: #8B4513; /* 棕色背景 */
            position: absolute; /* 絕對(duì)定位 */
            bottom: 0; /* 從底部開(kāi)始 */
            left: 80px; /* 從左邊偏移 */
            border-radius: 5px; /* 圓角 */
        }


        /* 圣誕樹(shù)星星的樣式 */
        .christmas-tree .star {
            position: absolute; /* 絕對(duì)定位 */
            top: -20px; /* 從頂部偏移 */
            left: 80px; /* 從左邊偏移 */
            width: 40px; /* 寬度 */
            height: 40px; /* 高度 */
            background-color: gold; /* 金色背景 */
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); /* 星星形狀 */
            animation: star-twinkle 2s infinite alternate; /* 閃爍動(dòng)畫(huà) */
        }


        /* 圣誕樹(shù)裝飾物的樣式 */
        .christmas-tree .ornament {
            position: absolute; /* 絕對(duì)定位 */
            width: 20px; /* 寬度 */
            height: 20px; /* 高度 */
            background-color: red; /* 紅色背景 */
            border-radius: 50%; /* 圓形 */
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* 發(fā)光效果 */
            animation: ornament-twinkle 2s infinite alternate; /* 閃爍動(dòng)畫(huà) */
        }


        /* 星星閃爍動(dòng)畫(huà) */
        @keyframes star-twinkle {
            0% {
                transform: scale(1); /* 初始大小 */
            }
            100% {
                transform: scale(1.2); /* 放大 */
            }
        }


        /* 裝飾物閃爍動(dòng)畫(huà) */
        @keyframes ornament-twinkle {
            0% {
                transform: scale(1); /* 初始大小 */
            }
            100% {
                transform: scale(1.2); /* 放大 */
            }
        }


        /* 雪花效果 */
        .snowflake {
            position: absolute; /* 絕對(duì)定位 */
            width: 10px; /* 寬度 */
            height: 10px; /* 高度 */
            background-color: white; /* 白色背景 */
            border-radius: 50%; /* 圓形 */
            opacity: 0.8; /* 透明度 */
            animation: fall linear infinite; /* 下落動(dòng)畫(huà) */
        }


        /* 雪花下落動(dòng)畫(huà) */
        @keyframes fall {
            0% {
                top: -10px; /* 從頂部開(kāi)始 */
                opacity: 0.8; /* 透明度 */
            }
            100% {
                top: 100vh; /* 下落到屏幕底部 */
                opacity: 0; /* 透明度逐漸消失 */
            }
        }


        /* 消息文本的樣式 */
        .message {
            position: absolute; /* 絕對(duì)定位 */
            top: 40%; /* 從頂部偏移 */
            left: 50%; /* 從左邊偏移 */
            transform: translate(-50%, -50%); /* 精確居中 */
            color: white; /* 白色文字 */
            font-size: 48px; /* 字體大小 */
            font-family: Arial, sans-serif; /* 字體 */
            text-shadow: 0 0 10px white; /* 發(fā)光效果 */
            animation: fadeInOut 4s infinite; /* 漸隱漸現(xiàn)動(dòng)畫(huà) */
        }


        /* 消息文本漸隱漸現(xiàn)動(dòng)畫(huà) */
        @keyframes fadeInOut {
            0%, 100% {
                opacity: 0; /* 完全透明 */
            }
            50% {
                opacity: 1; /* 完全不透明 */
            }
        }
    </style>
</head>


<body>
    <div class="app">
        <div class="christmas-tree">
            <div class="branch top"></div> <!-- 頂部枝干 -->
            <div class="branch middle"></div> <!-- 中部枝干 -->
            <div class="branch bottom"></div> <!-- 底部枝干 -->
            <div class="trunk"></div> <!-- 樹(shù)干 -->
            <div class="star"></div> <!-- 星星 -->
            <div class="ornament" style="top: 60px; left: 60px;"></div> <!-- 裝飾物1 -->
            <div class="ornament" style="top: 100px; left: 140px;"></div> <!-- 裝飾物2 -->
            <div class="ornament" style="top: 140px; left: 100px;"></div> <!-- 裝飾物3 -->
            <div class="ornament" style="top: 180px; left: 180px;"></div> <!-- 裝飾物4 -->
            <div class="ornament" style="top: 220px; left: 20px;"></div> <!-- 裝飾物5 -->
        </div>
    </div>


    <div class="message">圣誕快樂(lè)!</div> <!-- 消息文本 -->


    <script>
        // 創(chuàng)建雪花
        function createSnowflakes(num) {
            for (let i = 0; i < num; i++) {
                const snowflake = document.createElement('div'); // 創(chuàng)建一個(gè) div 元素
                snowflake.classList.add('snowflake'); // 添加雪花類(lèi)
                snowflake.style.left = Math.random() * 100 + 'vw'; // 隨機(jī)水平位置
                snowflake.style.animationDuration = Math.random() * 2 + 3 + 's'; // 隨機(jī)動(dòng)畫(huà)持續(xù)時(shí)間
                document.body.appendChild(snowflake); // 將雪花添加到頁(yè)面
            }
        }


        // 調(diào)用函數(shù)創(chuàng)建雪花
        createSnowflakes(100);
    </script>
</body>


</html>

更多實(shí)例分享

以下是將您提供的內(nèi)容轉(zhuǎn)換為Markdown格式的列表:

4 人點(diǎn)贊