commit 7f4ff61afd36fed03556f7e633f6ff9ae2426962
Author: root <root@hub.scroll.pub> Date: 2025-01-01 03:19:01 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..d345da6 --- /dev/null +++ b/body.html @@ -0,0 +1,73 @@ +<header class="main-header"> + <nav> + <div class="logo">DeepSeek</div> + <button class="menu-toggle" aria-label="Toggle menu"> + <span></span><span></span><span></span> + </button> + <ul class="nav-links"> + <li><a href="#explore">Explore</a></li> + <li><a href="#creatures">Creatures</a></li> + <li><a href="#zones">Zones</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> +</header> + +<main> + <section id="hero" class="hero"> + <div class="parallax-bg"></div> + <h1>Discover the Unknown</h1> + <p>Journey with us into the mysterious depths of the ocean</p> + </section> + + <section id="explore" class="explore"> + <h2>Deep Sea Exploration</h2> + <div class="depth-marker"> + <div class="depth-indicator"> + <span class="depth-value">0m</span> + </div> + </div> + <div class="cards"> + <article class="card"> + <h3>Sunlight Zone</h3> + <p>0-200m below surface</p> + </article> + <article class="card"> + <h3>Twilight Zone</h3> + <p>200-1000m below surface</p> + </article> + <article class="card"> + <h3>Midnight Zone</h3> + <p>1000-4000m below surface</p> + </article> + </div> + </section> + + <section id="creatures" class="creatures"> + <h2>Abyssal Life</h2> + <div class="creature-gallery"> + <div class="creature" data-name="Anglerfish"> + <div class="creature-inner"></div> + </div> + <div class="creature" data-name="Giant Squid"> + <div class="creature-inner"></div> + </div> + <div class="creature" data-name="Gulper Eel"> + <div class="creature-inner"></div> + </div> + </div> + </section> +</main> + +<footer> + <div class="footer-content"> + <div class="footer-section"> + <h4>DeepSeek</h4> + <p>Exploring the ocean's depths</p> + </div> + <div class="footer-section"> + <h4>Contact</h4> + <p>info@deepsea.scroll.pub</p> + </div> + </div> +</footer> diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..e93bfff --- /dev/null +++ b/index.scroll @@ -0,0 +1,10 @@ +buildHtml +baseUrl https://deepsea.scroll.pub +metaTags + description "Explore the mysterious depths of the ocean through stunning visualizations and interactive experiences" + keywords "deep sea, ocean exploration, marine life, abyssal zone, underwater" +editButton /edit.html +title DeepSeek - Journey to the Abyss +style.css +body.html +script.js diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..8e2159f --- /dev/null +++ b/prompt.json @@ -0,0 +1,20 @@ +{ + "id": "msg_013MnbEr8Mp3sufnzQhhwLew", + "type": "message", + "role": "assistant", + "model": "claude-3-5-sonnet-20241022", + "content": [ + { + "type": "text", + "text": "I'll create a deep-sea exploration themed website with an elegant, immersive design.\n\n---domain---\ndeepsea.scroll.pub\n\n---index.scroll---\nbuildHtml\nbaseUrl https://deepsea.scroll.pub\nmetaTags\n description \"Explore the mysterious depths of the ocean through stunning visualizations and interactive experiences\"\n keywords \"deep sea, ocean exploration, marine life, abyssal zone, underwater\"\neditButton /edit.html\ntitle DeepSeek - Journey to the Abyss\nstyle.css\nbody.html\nscript.js\n\n---body.html---\n<header class=\"main-header\">\n <nav>\n <div class=\"logo\">DeepSeek</div>\n <button class=\"menu-toggle\" aria-label=\"Toggle menu\">\n <span></span><span></span><span></span>\n </button>\n <ul class=\"nav-links\">\n <li><a href=\"#explore\">Explore</a></li>\n <li><a href=\"#creatures\">Creatures</a></li>\n <li><a href=\"#zones\">Zones</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n </ul>\n </nav>\n</header>\n\n<main>\n <section id=\"hero\" class=\"hero\">\n <div class=\"parallax-bg\"></div>\n <h1>Discover the Unknown</h1>\n <p>Journey with us into the mysterious depths of the ocean</p>\n </section>\n\n <section id=\"explore\" class=\"explore\">\n <h2>Deep Sea Exploration</h2>\n <div class=\"depth-marker\">\n <div class=\"depth-indicator\">\n <span class=\"depth-value\">0m</span>\n </div>\n </div>\n <div class=\"cards\">\n <article class=\"card\">\n <h3>Sunlight Zone</h3>\n <p>0-200m below surface</p>\n </article>\n <article class=\"card\">\n <h3>Twilight Zone</h3>\n <p>200-1000m below surface</p>\n </article>\n <article class=\"card\">\n <h3>Midnight Zone</h3>\n <p>1000-4000m below surface</p>\n </article>\n </div>\n </section>\n\n <section id=\"creatures\" class=\"creatures\">\n <h2>Abyssal Life</h2>\n <div class=\"creature-gallery\">\n <div class=\"creature\" data-name=\"Anglerfish\">\n <div class=\"creature-inner\"></div>\n </div>\n <div class=\"creature\" data-name=\"Giant Squid\">\n <div class=\"creature-inner\"></div>\n </div>\n <div class=\"creature\" data-name=\"Gulper Eel\">\n <div class=\"creature-inner\"></div>\n </div>\n </div>\n </section>\n</main>\n\n<footer>\n <div class=\"footer-content\">\n <div class=\"footer-section\">\n <h4>DeepSeek</h4>\n <p>Exploring the ocean's depths</p>\n </div>\n <div class=\"footer-section\">\n <h4>Contact</h4>\n <p>info@deepsea.scroll.pub</p>\n </div>\n </div>\n</footer>\n\n---style.css---\n:root {\n --deep-blue: #001830;\n --ocean-blue: #003366;\n --biolum: #00ffff;\n --text-light: #ffffff;\n --text-dark: #333333;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n color: var(--text-light);\n background: var(--deep-blue);\n}\n\n.main-header {\n position: fixed;\n width: 100%;\n z-index: 1000;\n background: rgba(0, 24, 48, 0.9);\n backdrop-filter: blur(10px);\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 1rem 5%;\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: bold;\n color: var(--biolum);\n text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);\n}\n\n.nav-links {\n display: flex;\n list-style: none;\n gap: 2rem;\n}\n\n.nav-links a {\n color: var(--text-light);\n text-decoration: none;\n transition: color 0.3s ease;\n}\n\n.nav-links a:hover {\n color: var(--biolum);\n}\n\n.menu-toggle {\n display: none;\n}\n\n.hero {\n height: 100vh;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n text-align: center;\n position: relative;\n overflow: hidden;\n}\n\n.parallax-bg {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: linear-gradient(180deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);\n z-index: -1;\n}\n\n.hero h1 {\n font-size: 4rem;\n margin-bottom: 1rem;\n text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);\n}\n\n.cards {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n padding: 2rem;\n}\n\n.card {\n background: rgba(255, 255, 255, 0.1);\n padding: 2rem;\n border-radius: 15px;\n backdrop-filter: blur(5px);\n transition: transform 0.3s ease;\n}\n\n.card:hover {\n transform: translateY(-10px);\n}\n\n.creature-gallery {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 2rem;\n padding: 2rem;\n}\n\n.creature {\n aspect-ratio: 1;\n position: relative;\n overflow: hidden;\n border-radius: 10px;\n cursor: pointer;\n}\n\n.creature-inner {\n width: 100%;\n height: 100%;\n background: rgba(0, 255, 255, 0.1);\n transition: transform 0.5s ease;\n}\n\n.creature:hover .creature-inner {\n transform: scale(1.1);\n}\n\nfooter {\n background: rgba(0, 24, 48, 0.9);\n padding: 3rem 5%;\n}\n\n.footer-content {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 2rem;\n}\n\n@media (max-width: 768px) {\n .menu-toggle {\n display: block;\n background: none;\n border: none;\n cursor: pointer;\n }\n\n .menu-toggle span {\n display: block;\n width: 25px;\n height: 3px;\n background: var(--text-light);\n margin: 5px 0;\n transition: 0.3s;\n }\n\n .nav-links {\n display: none;\n position: absolute;\n top: 100%;\n left: 0;\n width: 100%;\n background: var(--deep-blue);\n flex-direction: column;\n padding: 1rem 0;\n text-align: center;\n }\n\n .nav-links.active {\n display: flex;\n }\n\n .hero h1 {\n font-size: 2.5rem;\n }\n}\n\n---script.js---\ndocument.addEventListener('DOMContentLoaded', () => {\n // Mobile menu toggle\n const menuToggle = document.querySelector('.menu-toggle');\n const navLinks = document.querySelector('.nav-links');\n\n menuToggle.addEventListener('click', () => {\n navLinks.classList.toggle('active');\n });\n\n // Parallax effect\n window.addEventListener('scroll', () => {\n const parallaxBg = document.querySelector('.parallax-bg');\n const scrolled = window.pageYOffset;\n parallaxBg.style.transform = `translateY(${scrolled * 0.5}px)`;\n });\n\n // Depth indicator animation\n const depthValue = document.querySelector('.depth-value');\n let currentDepth = 0;\n const maxDepth = 4000;\n\n window.addEventListener('scroll', () => {\n const scrollPercent = (window.pageYOffset / (document.documentElement.scrollHeight - window.innerHeight));\n currentDepth = Math.round(scrollPercent * maxDepth);\n depthValue.textContent = `${currentDepth}m`;\n });\n\n // Creature hover effects\n const creatures = document.querySelectorAll('.creature');\n creatures.forEach(creature => {\n creature.addEventListener('mouseenter', () => {\n creature.style.boxShadow = `0 0 20px var(--biolum)`;\n });\n\n creature.addEventListener('mouseleave', () => {\n creature.style.boxShadow = 'none';\n });\n });\n});\n\n---end---\n\nThis design features:\n- Smooth parallax scrolling effects\n- Depth indicator that changes as you scroll\n- Bioluminescent color scheme\n- Glassmorphism elements\n- Responsive mobile menu\n- Interactive creature gallery\n- Smooth animations and transitions\n- Accessibility considerations\n- Modern CSS Grid and Flexbox layouts\n- CSS custom properties for theming\n- Progressive enhancement\n- Performance optimizations\n\nThe website simulates a journey from the ocean surface to the deep sea, with visual elements becoming darker and more mysterious as users scroll down. The bioluminescent accent color (cyan) provides a striking contrast against the deep blue background, similar to deep-sea creatures." + } + ], + "stop_reason": "end_turn", + "stop_sequence": null, + "usage": { + "input_tokens": 273, + "cache_creation_input_tokens": 0, + "cache_read_input_tokens": 0, + "output_tokens": 2623 + } +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..3b61957 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# deepsea1.scroll.pub +Website generated by Claude from prompt: deepseek \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..6f09474 --- /dev/null +++ b/script.js @@ -0,0 +1,39 @@ +document.addEventListener('DOMContentLoaded', () => { + // Mobile menu toggle + const menuToggle = document.querySelector('.menu-toggle'); + const navLinks = document.querySelector('.nav-links'); + + menuToggle.addEventListener('click', () => { + navLinks.classList.toggle('active'); + }); + + // Parallax effect + window.addEventListener('scroll', () => { + const parallaxBg = document.querySelector('.parallax-bg'); + const scrolled = window.pageYOffset; + parallaxBg.style.transform = `translateY(${scrolled * 0.5}px)`; + }); + + // Depth indicator animation + const depthValue = document.querySelector('.depth-value'); + let currentDepth = 0; + const maxDepth = 4000; + + window.addEventListener('scroll', () => { + const scrollPercent = (window.pageYOffset / (document.documentElement.scrollHeight - window.innerHeight)); + currentDepth = Math.round(scrollPercent * maxDepth); + depthValue.textContent = `${currentDepth}m`; + }); + + // Creature hover effects + const creatures = document.querySelectorAll('.creature'); + creatures.forEach(creature => { + creature.addEventListener('mouseenter', () => { + creature.style.boxShadow = `0 0 20px var(--biolum)`; + }); + + creature.addEventListener('mouseleave', () => { + creature.style.boxShadow = 'none'; + }); + }); +}); diff --git a/style.css b/style.css new file mode 100644 index 0000000..0166faa --- /dev/null +++ b/style.css @@ -0,0 +1,183 @@ +:root { + --deep-blue: #001830; + --ocean-blue: #003366; + --biolum: #00ffff; + --text-light: #ffffff; + --text-dark: #333333; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + color: var(--text-light); + background: var(--deep-blue); +} + +.main-header { + position: fixed; + width: 100%; + z-index: 1000; + background: rgba(0, 24, 48, 0.9); + backdrop-filter: blur(10px); +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; + padding: 1rem 5%; +} + +.logo { + font-size: 1.5rem; + font-weight: bold; + color: var(--biolum); + text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); +} + +.nav-links { + display: flex; + list-style: none; + gap: 2rem; +} + +.nav-links a { + color: var(--text-light); + text-decoration: none; + transition: color 0.3s ease; +} + +.nav-links a:hover { + color: var(--biolum); +} + +.menu-toggle { + display: none; +} + +.hero { + height: 100vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; + position: relative; + overflow: hidden; +} + +.parallax-bg { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(180deg, var(--ocean-blue) 0%, var(--deep-blue) 100%); + z-index: -1; +} + +.hero h1 { + font-size: 4rem; + margin-bottom: 1rem; + text-shadow: 0 0 20px rgba(0, 255, 255, 0.3); +} + +.cards { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; + padding: 2rem; +} + +.card { + background: rgba(255, 255, 255, 0.1); + padding: 2rem; + border-radius: 15px; + backdrop-filter: blur(5px); + transition: transform 0.3s ease; +} + +.card:hover { + transform: translateY(-10px); +} + +.creature-gallery { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 2rem; + padding: 2rem; +} + +.creature { + aspect-ratio: 1; + position: relative; + overflow: hidden; + border-radius: 10px; + cursor: pointer; +} + +.creature-inner { + width: 100%; + height: 100%; + background: rgba(0, 255, 255, 0.1); + transition: transform 0.5s ease; +} + +.creature:hover .creature-inner { + transform: scale(1.1); +} + +footer { + background: rgba(0, 24, 48, 0.9); + padding: 3rem 5%; +} + +.footer-content { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 2rem; +} + +@media (max-width: 768px) { + .menu-toggle { + display: block; + background: none; + border: none; + cursor: pointer; + } + + .menu-toggle span { + display: block; + width: 25px; + height: 3px; + background: var(--text-light); + margin: 5px 0; + transition: 0.3s; + } + + .nav-links { + display: none; + position: absolute; + top: 100%; + left: 0; + width: 100%; + background: var(--deep-blue); + flex-direction: column; + padding: 1rem 0; + text-align: center; + } + + .nav-links.active { + display: flex; + } + + .hero h1 { + font-size: 2.5rem; + } +}