📂文章目录


二、📚网站介绍

📒网站文件方面:html网页结构文件、css网页样式文件、js网页特效文件、images网页图片文件;

📙网页编辑方面:可使用任意HTML编辑软件(如:​​Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++​​​ 等任意html编辑软件进行运行及修改编辑等操作)。
其中:
(1)📜html文件包含:其中index.html是首页、其他html为二级页面;
(2)📑 css文件包含:css全部页面样式,3D动态效果,雪花飘落等等
(3)📄 js文件包含:页面炫酷效果实现


三、🔗网站效果

▶️1.视频演示

16-HTML5庆祝生日蛋糕烟花特效

🧩 2.图片演示

html生日祝福网站 html生日快乐网页代码 程序员专属情人节表白网站_网页设计


四、💒 网站代码

🧱HTML结构代码

<!--
* @Author: your name
* @Date: 2021-05-13 13:53:15
* @LastEditTime: 2021-05-13 13:54:41
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \HTML5庆祝生日蛋糕烟花特效\index.html
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>HTML5庆祝生日蛋糕烟花特效</title>
<link href="static/css/zzsc.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

<link rel="stylesheet" href="static/css/style.css" />
</head>

<body>
<h1 data-splitting>生日快乐 Happy birthday ❤<br />🎂</h1>

<script src="static/js/splitting.min.js"></script>
<script src="static/js/script.js"></script>
</body>
</html>

🏠CSS样式代码

@charset "UTF-8";
body {
display: grid;
place-items: center;
height: 100vh;
overflow: hidden;
font-family: 'Gloria Hallelujah', cursive;
background: linear-gradient(#eb6383 25%, #fa9191 25% 50%, #ffe9c5 50% 75%, #b4f2e1 75%);
}

h1 {
font-size: 6.5vw;
text-align: center;
color: white;
text-shadow: 1px 1px 2px #eb6383;
}

.char,
.word {
display: inline-block;
}

.splitting .char {
animation: slide-in 1s cubic-bezier(0.17, 0.84, 0.4, 1.49) both;
animation-delay: calc(30ms * var(--char-index));
}

[data-word="🎂"] .char {
display: inline;
}

.splitting [data-word="🎂"] {
animation: bump-in 1s cubic-bezier(0.17, 0.84, 0.4, 1.49) both;
animation-delay: 1s;
}

@keyframes {
0% {
transform: scale(2) rotate(60deg);
opacity: 0;
}
}

@keyframes {
0% {
transform: scale(0);
opacity: 0;
}
}

particule {
position: absolute;
top: 0;
left: 0;
border-radius: 50%;
width: 30px;
height: 30px;
box-shadow: 1px 1px 4px #eb6383;
}

五、🎁更多源码

1.如果我的博客对你有帮助 ​​请 “👍点赞” “✍️评论” “💙收藏” ​​一键三连哦!

2.​​💗【🉑关注我| 获取更多源码】 ​​带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、等!

📣以上内容技术相关问题💌欢迎一起交流学习