Changes to amor20243.scroll.pub

root
root
21 days ago
Initial commit
body.html
Changed around line 1
+
+

¡Feliz Año Nuevo, Mi Amor!

+

新年快乐,我的爱人

+
+
+
+

En este nuevo año, quiero que sepas que mi amor por ti es eterno. 我对你的爱是永恒的。

+

Eres mi todo, mi razón de ser. 你是我的一切,我存在的理由。

+

Te amo más que a nada en este mundo. 我爱你胜过世界上的一切。

+
+
+

Envíame un Beso

+
+

Besos enviados: 0

+
+
+
+

Que este año esté lleno de amor, felicidad y momentos inolvidables juntos.

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://amor2024.scroll.pub
+ metaTags
+ editButton /edit.html
+ title New Year Greeting Card to My Spanish Lover
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "d237b894-c3a9-468b-879a-e8a557f131c5",
+ "object": "chat.completion",
+ "created": 1735656825,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\namor2024.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://amor2024.scroll.pub\nmetaTags\neditButton /edit.html\ntitle New Year Greeting Card to My Spanish Lover\nstyle.css\nbody.html\nscript.js\n---body.html---\n
\n

¡Feliz Año Nuevo, Mi Amor!

\n

新年快乐,我的爱人

\n
\n
\n
\n

En este nuevo año, quiero que sepas que mi amor por ti es eterno. 我对你的爱是永恒的。

\n

Eres mi todo, mi razón de ser. 你是我的一切,我存在的理由。

\n

Te amo más que a nada en este mundo. 我爱你胜过世界上的一切。

\n
\n
\n

Envíame un Beso

\n \n

Besos enviados: 0

\n
\n
\n
\n

Que este año esté lleno de amor, felicidad y momentos inolvidables juntos.

\n
\n---style.css---\nbody {\n font-family: 'Georgia', serif;\n background: linear-gradient(135deg, #ff7e5f, #feb47b);\n color: #fff;\n margin: 0;\n padding: 0;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n min-height: 100vh;\n text-align: center;\n}\n\nheader {\n margin-bottom: 2rem;\n}\n\nh1 {\n font-size: 3rem;\n margin-bottom: 1rem;\n}\n\np {\n font-size: 1.2rem;\n line-height: 1.6;\n}\n\n#interactive {\n margin-top: 2rem;\n}\n\n#kissButton {\n background: none;\n border: none;\n font-size: 3rem;\n cursor: pointer;\n transition: transform 0.3s ease;\n}\n\n#kissButton:hover {\n transform: scale(1.2);\n}\n\n#kissCount {\n font-size: 1.2rem;\n margin-top: 1rem;\n}\n\nfooter {\n margin-top: 3rem;\n font-size: 1rem;\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2rem;\n }\n\n p {\n font-size: 1rem;\n }\n\n #kissButton {\n font-size: 2rem;\n }\n}\n---script.js---\nlet kissCount = 0;\n\ndocument.getElementById('kissButton').addEventListener('click', function() {\n kissCount++;\n document.getElementById('kissCount').textContent = `Besos enviados: ${kissCount}`;\n animateKiss();\n});\n\nfunction animateKiss() {\n const kiss = document.createElement('div');\n kiss.textContent = '💋';\n kiss.style.position = 'absolute';\n kiss.style.fontSize = '2rem';\n kiss.style.left = `${Math.random() * 80 + 10}%`;\n kiss.style.top = '0';\n document.body.appendChild(kiss);\n\n const animation = kiss.animate([\n { top: '0', opacity: 1 },\n { top: '80%', opacity: 0 }\n ], {\n duration: 1000,\n easing: 'ease-out'\n });\n\n animation.onfinish = () => kiss.remove();\n}\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 259,
+ "completion_tokens": 811,
+ "total_tokens": 1070,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 259
+ },
+ "system_fingerprint": "fp_f1afce2943"
+ }
readme.scroll
Changed around line 1
+ # amor20243.scroll.pub
+ Website generated by DeepSeek from prompt: A New Year greeting card to my Spanish lover with written hot words in Chinese and Spanish. Have some interactivity. Be creative.
script.js
Changed around line 1
+ let kissCount = 0;
+
+ document.getElementById('kissButton').addEventListener('click', function() {
+ kissCount++;
+ document.getElementById('kissCount').textContent = `Besos enviados: ${kissCount}`;
+ animateKiss();
+ });
+
+ function animateKiss() {
+ const kiss = document.createElement('div');
+ kiss.textContent = '💋';
+ kiss.style.position = 'absolute';
+ kiss.style.fontSize = '2rem';
+ kiss.style.left = `${Math.random() * 80 + 10}%`;
+ kiss.style.top = '0';
+ document.body.appendChild(kiss);
+
+ const animation = kiss.animate([
+ { top: '0', opacity: 1 },
+ { top: '80%', opacity: 0 }
+ ], {
+ duration: 1000,
+ easing: 'ease-out'
+ });
+
+ animation.onfinish = () => kiss.remove();
+ }
style.css
Changed around line 1
+ body {
+ font-family: 'Georgia', serif;
+ background: linear-gradient(135deg, #ff7e5f, #feb47b);
+ color: #fff;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ min-height: 100vh;
+ text-align: center;
+ }
+
+ header {
+ margin-bottom: 2rem;
+ }
+
+ h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ p {
+ font-size: 1.2rem;
+ line-height: 1.6;
+ }
+
+ #interactive {
+ margin-top: 2rem;
+ }
+
+ #kissButton {
+ background: none;
+ border: none;
+ font-size: 3rem;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ #kissButton:hover {
+ transform: scale(1.2);
+ }
+
+ #kissCount {
+ font-size: 1.2rem;
+ margin-top: 1rem;
+ }
+
+ footer {
+ margin-top: 3rem;
+ font-size: 1rem;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ p {
+ font-size: 1rem;
+ }
+
+ #kissButton {
+ font-size: 2rem;
+ }
+ }