本文最后更新于 2025-07-21T16:36:05+08:00
如果qq的信息没有错的话,今天是黄文林的生日。
那么就写一篇文章祝ta生日快乐吧,假如不是今天那也提前祝了(●ˇ∀ˇ●)
不过对我来说生日倒不是什么重要的日子,毕竟人也不是游戏角色,能够到了一定年龄就自动解锁什么技能之类的。
不过人与人之间的观念各有千秋,不能强求也不能忽视。
所以就简单写点什么表达一下心意吧。
毕竟这个博客的搭建,Windeling也有很大功劳。
「计算,为了无法计算的。」
后记
最近真的有点忙,抽了点时间来做这个。
虽然说是“做”,但是我的功力显然不足。
所以感谢DeepSeek
同学的帮助(^▽^)
代码在此:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
| <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>生日快乐!</title> <style> body { font-family: 'Arial', sans-serif; margin: 0; overflow: hidden; height: 100vh; display: flex; justify-content: center; align-items: center; position: relative; } body::before { content: ""; position: absolute; top: -100%; left: -100%; right: -100%; bottom: -100%; background-image: url('https://boredliam.gz.bcebos.com/retouch_2025051023335518.jpg'); background-size: 20% auto; background-repeat: repeat; transform: rotate(25deg); z-index: -2; } body::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: #ffebee; opacity: 0.9; z-index: -1; } .card { position: relative; width: 350px; height: 450px; background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); border-radius: 15px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); padding: 30px; text-align: center; color: #fff; transform-style: preserve-3d; transition: transform 0.5s; } .card:hover { transform: translateY(-10px) rotateX(5deg); } h1 { font-size: 28px; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); } p { font-size: 18px; line-height: 1.6; margin-bottom: 25px; } .name { font-weight: bold; font-size: 24px; color: #d81b60; text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); font-family: sans-serif; } .balloon { position: absolute; font-size: 40px; opacity: 0.9; animation: float 3s infinite ease-in-out; } .balloon:nth-child(1) { top: 50px; left: 30px; animation-delay: 0s; } .balloon:nth-child(2) { top: 80px; right: 40px; animation-delay: 0.5s; filter: hue-rotate(240deg) saturate(1.5); } .balloon:nth-child(3) { bottom: 100px; left: 50px; animation-delay: 1s; filter: hue-rotate(180deg) saturate(1.2) brightness(1.1); } @keyframes float { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-20px) rotate(5deg); } } .cake { font-size: 50px; margin: 20px 0; } .signature { font-style: italic; margin-top: 30px; font-family: sans-serif; } </style> </head> <body> <div class="card"> <div class="balloon">🎈</div> <div class="balloon">🎈</div> <div class="balloon">🎈</div> <h1>生日快乐!</h1> <div class="cake">🎂</div> <p>亲爱的 <span class="name">Windeling</span>,</p> <p>在这个特别的日子里,祝你生日快乐!愿你的每一天都充满欢笑和幸福,学业进步,心想事成!</p> <p class="signature">Yours<br>BoredLiam</p> </div> </body> </html>
|