commit a2362e3b4365262fc701fd00ffce151cb588c628
Author: ffff:112.10.223.46 <ffff:112.10.223.46@happy2025.scroll.pub>
Date: 2025-01-02 02:18:41 +0000
Subject: updated index.scroll
diff --git a/index.scroll b/index.scroll
index 8df2799..9fc568f 100644
--- a/index.scroll
+++ b/index.scroll
@@ -2,7 +2,7 @@ buildHtml
baseUrl https://happy2025.scroll.pub
metaTags
editButton /edit.html
-title 2025新年快乐 - SF留杭解闷群
+title 2025新年快乐 - 顾浩然
style.css
body.html
script.js
\ No newline at end of file
commit d6db504bf05c7183e98d28934807ae97a2b5c1f7
Author: root <root@hub.scroll.pub>
Date: 2025-01-02 02:17:10 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..b0e821d
--- /dev/null
+++ b/body.html
@@ -0,0 +1,19 @@
+<main>
+ <div class="container">
+ <h1 class="title">2025新年快乐!</h1>
+ <p class="subtitle">SF留杭解闷群的大家:</p>
+ <div class="fireworks">
+ <div class="firework"></div>
+ <div class="firework"></div>
+ <div class="firework"></div>
+ </div>
+ <div class="message">
+ <p>愿新的一年,</p>
+ <p>幸福如烟花般绚烂,</p>
+ <p>快乐如星辰般闪耀,</p>
+ <p>健康如青山般常伴,</p>
+ <p>友谊如流水般长存!</p>
+ </div>
+ <div class="blinking-text">🎉 新年快乐! 🎉</div>
+ </div>
+</main>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..8df2799
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://happy2025.scroll.pub
+metaTags
+editButton /edit.html
+title 2025新年快乐 - SF留杭解闷群
+style.css
+body.html
+script.js
\ No newline at end of file
diff --git a/prompt.json b/prompt.json
new file mode 100644
index 0000000..c19d98c
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "2057cb6d-605d-44c5-9dc1-357fe02c978e",
+ "object": "chat.completion",
+ "created": 1735784216,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nhappy2025.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://happy2025.scroll.pub\nmetaTags\neditButton /edit.html\ntitle 2025新年快乐 - SF留杭解闷群\nstyle.css\nbody.html\nscript.js\n---body.html---\n<main>\n <div class=\"container\">\n <h1 class=\"title\">2025新年快乐!</h1>\n <p class=\"subtitle\">SF留杭解闷群的大家:</p>\n <div class=\"fireworks\">\n <div class=\"firework\"></div>\n <div class=\"firework\"></div>\n <div class=\"firework\"></div>\n </div>\n <div class=\"message\">\n <p>愿新的一年,</p>\n <p>幸福如烟花般绚烂,</p>\n <p>快乐如星辰般闪耀,</p>\n <p>健康如青山般常伴,</p>\n <p>友谊如流水般长存!</p>\n </div>\n <div class=\"blinking-text\">🎉 新年快乐! 🎉</div>\n </div>\n</main>\n---style.css---\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n background: linear-gradient(135deg, #1a1a1a, #333);\n color: #fff;\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100vh;\n overflow: hidden;\n}\n\n.container {\n text-align: center;\n position: relative;\n}\n\n.title {\n font-size: 3rem;\n margin-bottom: 1rem;\n animation: fadeIn 2s ease-in-out;\n}\n\n.subtitle {\n font-size: 1.5rem;\n margin-bottom: 2rem;\n animation: fadeIn 2.5s ease-in-out;\n}\n\n.message {\n font-size: 1.2rem;\n line-height: 1.6;\n margin-bottom: 2rem;\n animation: fadeIn 3s ease-in-out;\n}\n\n.blinking-text {\n font-size: 2rem;\n animation: blink 1s infinite;\n}\n\n.fireworks {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n}\n\n.firework {\n position: absolute;\n width: 10px;\n height: 10px;\n background: #ff0;\n border-radius: 50%;\n animation: explode 2s infinite;\n}\n\n.firework:nth-child(1) {\n top: 20%;\n left: 30%;\n animation-delay: 0s;\n}\n\n.firework:nth-child(2) {\n top: 40%;\n left: 60%;\n animation-delay: 1s;\n}\n\n.firework:nth-child(3) {\n top: 60%;\n left: 20%;\n animation-delay: 1.5s;\n}\n\n@keyframes fadeIn {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}\n\n@keyframes blink {\n 0%, 50%, 100% {\n opacity: 1;\n }\n 25%, 75% {\n opacity: 0;\n }\n}\n\n@keyframes explode {\n 0% {\n transform: scale(1);\n opacity: 1;\n }\n 100% {\n transform: scale(10);\n opacity: 0;\n }\n}\n\n@media (max-width: 768px) {\n .title {\n font-size: 2rem;\n }\n\n .subtitle {\n font-size: 1.2rem;\n }\n\n .message {\n font-size: 1rem;\n }\n\n .blinking-text {\n font-size: 1.5rem;\n }\n}\n---script.js---\n// No additional JavaScript needed for this simple page\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 259,
+ "completion_tokens": 885,
+ "total_tokens": 1144,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 259
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..bddfe4b
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# happy2025.scroll.pub
+Website generated by DeepSeek from prompt: 做一个网页,告诉sf留杭解闷群的大家2025年新年快乐,并附上闪烁漂亮的新年祝福
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..6a2bda7
--- /dev/null
+++ b/script.js
@@ -0,0 +1 @@
+// No additional JavaScript needed for this simple page
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..80ae1e0
--- /dev/null
+++ b/style.css
@@ -0,0 +1,128 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: 'Arial', sans-serif;
+ background: linear-gradient(135deg, #1a1a1a, #333);
+ color: #fff;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ overflow: hidden;
+}
+
+.container {
+ text-align: center;
+ position: relative;
+}
+
+.title {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 2s ease-in-out;
+}
+
+.subtitle {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ animation: fadeIn 2.5s ease-in-out;
+}
+
+.message {
+ font-size: 1.2rem;
+ line-height: 1.6;
+ margin-bottom: 2rem;
+ animation: fadeIn 3s ease-in-out;
+}
+
+.blinking-text {
+ font-size: 2rem;
+ animation: blink 1s infinite;
+}
+
+.fireworks {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+}
+
+.firework {
+ position: absolute;
+ width: 10px;
+ height: 10px;
+ background: #ff0;
+ border-radius: 50%;
+ animation: explode 2s infinite;
+}
+
+.firework:nth-child(1) {
+ top: 20%;
+ left: 30%;
+ animation-delay: 0s;
+}
+
+.firework:nth-child(2) {
+ top: 40%;
+ left: 60%;
+ animation-delay: 1s;
+}
+
+.firework:nth-child(3) {
+ top: 60%;
+ left: 20%;
+ animation-delay: 1.5s;
+}
+
+@keyframes fadeIn {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+
+@keyframes blink {
+ 0%, 50%, 100% {
+ opacity: 1;
+ }
+ 25%, 75% {
+ opacity: 0;
+ }
+}
+
+@keyframes explode {
+ 0% {
+ transform: scale(1);
+ opacity: 1;
+ }
+ 100% {
+ transform: scale(10);
+ opacity: 0;
+ }
+}
+
+@media (max-width: 768px) {
+ .title {
+ font-size: 2rem;
+ }
+
+ .subtitle {
+ font-size: 1.2rem;
+ }
+
+ .message {
+ font-size: 1rem;
+ }
+
+ .blinking-text {
+ font-size: 1.5rem;
+ }
+}
\ No newline at end of file