commit 480c91c848b5ca660343cdfb013034b92a083677
Author: root <root@hub.scroll.pub> Date: 2025-01-03 02:08:08 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..f3d64a6 --- /dev/null +++ b/body.html @@ -0,0 +1,68 @@ +<header class="header"> + <div class="container"> + <h1 class="logo">EcomHub</h1> + <nav class="nav"> + <ul> + <li><a href="#home">Home</a></li> + <li><a href="#about">About</a></li> + <li><a href="#products">Products</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> + </div> +</header> + +<main> + <section id="home" class="hero"> + <div class="container"> + <h2>Welcome to EcomHub</h2> + <p>Your one-stop solution for all e-commerce needs.</p> + <a href="#products" class="btn">Explore Products</a> + </div> + </section> + + <section id="about" class="about"> + <div class="container"> + <h2>About Us</h2> + <p>Learn about our journey, mission, and the team behind EcomHub.</p> + <a href="#history" class="btn">Our History</a> + </div> + </section> + + <section id="products" class="products"> + <div class="container"> + <h2>Our Products</h2> + <div class="product-grid"> + <div class="product-card"> + <h3>Product 1</h3> + <p>Description of Product 1.</p> + <a href="#buy" class="btn">Buy Now</a> + </div> + <div class="product-card"> + <h3>Product 2</h3> + <p>Description of Product 2.</p> + <a href="#buy" class="btn">Buy Now</a> + </div> + </div> + </div> + </section> + + <section id="contact" class="contact"> + <div class="container"> + <h2>Contact Us</h2> + <p>Get in touch with us for any inquiries or support.</p> + <form id="contactForm"> + <input type="text" id="name" placeholder="Your Name" required> + <input type="email" id="email" placeholder="Your Email" required> + <textarea id="message" placeholder="Your Message" required></textarea> + <button type="submit" class="btn">Send Message</button> + </form> + </div> + </section> +</main> + +<footer class="footer"> + <div class="container"> + <p>EcomHub - Empowering Your E-commerce Journey</p> + </div> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..275e013 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://ecomhub.scroll.pub +metaTags +editButton /edit.html +title EcomHub - Your Complete E-commerce Solution +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..93611ad --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "01c92d4b-ddd4-453d-90d5-4acb40f73ce9", + "object": "chat.completion", + "created": 1735870064, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\necomhub.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://ecomhub.scroll.pub\nmetaTags\neditButton /edit.html\ntitle EcomHub - Your Complete E-commerce Solution\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"header\">\n <div class=\"container\">\n <h1 class=\"logo\">EcomHub</h1>\n <nav class=\"nav\">\n <ul>\n <li><a href=\"#home\">Home</a></li>\n <li><a href=\"#about\">About</a></li>\n <li><a href=\"#products\">Products</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n </ul>\n </nav>\n </div>\n</header>\n\n<main>\n <section id=\"home\" class=\"hero\">\n <div class=\"container\">\n <h2>Welcome to EcomHub</h2>\n <p>Your one-stop solution for all e-commerce needs.</p>\n <a href=\"#products\" class=\"btn\">Explore Products</a>\n </div>\n </section>\n\n <section id=\"about\" class=\"about\">\n <div class=\"container\">\n <h2>About Us</h2>\n <p>Learn about our journey, mission, and the team behind EcomHub.</p>\n <a href=\"#history\" class=\"btn\">Our History</a>\n </div>\n </section>\n\n <section id=\"products\" class=\"products\">\n <div class=\"container\">\n <h2>Our Products</h2>\n <div class=\"product-grid\">\n <div class=\"product-card\">\n <h3>Product 1</h3>\n <p>Description of Product 1.</p>\n <a href=\"#buy\" class=\"btn\">Buy Now</a>\n </div>\n <div class=\"product-card\">\n <h3>Product 2</h3>\n <p>Description of Product 2.</p>\n <a href=\"#buy\" class=\"btn\">Buy Now</a>\n </div>\n </div>\n </div>\n </section>\n\n <section id=\"contact\" class=\"contact\">\n <div class=\"container\">\n <h2>Contact Us</h2>\n <p>Get in touch with us for any inquiries or support.</p>\n <form id=\"contactForm\">\n <input type=\"text\" id=\"name\" placeholder=\"Your Name\" required>\n <input type=\"email\" id=\"email\" placeholder=\"Your Email\" required>\n <textarea id=\"message\" placeholder=\"Your Message\" required></textarea>\n <button type=\"submit\" class=\"btn\">Send Message</button>\n </form>\n </div>\n </section>\n</main>\n\n<footer class=\"footer\">\n <div class=\"container\">\n <p>EcomHub - Empowering Your E-commerce Journey</p>\n </div>\n</footer>\n---style.css---\n:root {\n --primary-color: #4CAF50;\n --secondary-color: #333;\n --background-color: #f4f4f4;\n --text-color: #333;\n --white: #fff;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\n.container {\n width: 90%;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.header {\n background-color: var(--primary-color);\n color: var(--white);\n padding: 1rem 0;\n}\n\n.logo {\n margin: 0;\n font-size: 2rem;\n}\n\n.nav ul {\n list-style: none;\n padding: 0;\n display: flex;\n justify-content: flex-end;\n}\n\n.nav ul li {\n margin-left: 1rem;\n}\n\n.nav ul li a {\n color: var(--white);\n text-decoration: none;\n font-weight: bold;\n}\n\n.hero {\n background: url('hero-bg.jpg') no-repeat center center/cover;\n color: var(--white);\n padding: 5rem 0;\n text-align: center;\n}\n\n.hero h2 {\n font-size: 3rem;\n margin-bottom: 1rem;\n}\n\n.hero p {\n font-size: 1.5rem;\n margin-bottom: 2rem;\n}\n\n.btn {\n background-color: var(--primary-color);\n color: var(--white);\n padding: 0.75rem 1.5rem;\n text-decoration: none;\n border-radius: 5px;\n transition: background-color 0.3s ease;\n}\n\n.btn:hover {\n background-color: darken(var(--primary-color), 10%);\n}\n\n.about, .products, .contact {\n padding: 4rem 0;\n text-align: center;\n}\n\n.product-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1rem;\n}\n\n.product-card {\n background-color: var(--white);\n padding: 1rem;\n border-radius: 5px;\n box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);\n}\n\n.product-card h3 {\n margin-top: 0;\n}\n\n.footer {\n background-color: var(--secondary-color);\n color: var(--white);\n text-align: center;\n padding: 1rem 0;\n}\n\n@media (max-width: 768px) {\n .nav ul {\n flex-direction: column;\n align-items: center;\n }\n\n .nav ul li {\n margin: 0.5rem 0;\n }\n\n .hero h2 {\n font-size: 2rem;\n }\n\n .hero p {\n font-size: 1.2rem;\n }\n}\n---script.js---\ndocument.getElementById('contactForm').addEventListener('submit', function(event) {\n event.preventDefault();\n const name = document.getElementById('name').value;\n const email = document.getElementById('email').value;\n const message = document.getElementById('message').value;\n\n if (name && email && message) {\n alert('Thank you for contacting us, ' + name + '! We will get back to you shortly.');\n document.getElementById('contactForm').reset();\n } else {\n alert('Please fill out all fields.');\n }\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 549, + "completion_tokens": 1420, + "total_tokens": 1969, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 549 + }, + "system_fingerprint": "fp_3a5770e1b4" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..6c4c372 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# ecomhub.scroll.pub +Website generated by DeepSeek from prompt: 这张图展示了以官网为主导的电商功能属性。图中列出了多个功能模块,具体如下: 1. **官网首页**:这是整个官网的入口,通常包含公司的主要信息和导航链接。 2. **发展历程**:展示公司的发展历史,包括重要事件和里程碑。 3. **订单支付**:用户可以在此进行商品订单的支付操作。 4. **SEO(搜索引擎优化)**:用于优化官网在搜索引擎中的排名,提高网站流量。 5. **公司介绍**:提供公司的基本信息,包括公司概况、团队介绍等。 6. **加入我们**:通常是招聘信息页面,展示公司的招聘职位和应聘方式。 7. **国际化支付**:支持不同国家和地区的支付方式,方便国际用户。 8. **公众号管理**:用于管理公司的微信公众号,发布文章和互动。 9. **产品介绍**:展示公司的产品信息,包括产品特点、功能和使用方法。 10. **商务合作**:提供合作机会和联系方式,便于与其他公司进行合作。 11. **网站管理后台**:用于网站管理员进行内容管理和维护。 12. **产品手册**:提供产品的详细说明书和技术文档。 13. **产品购买**:用户可以在此直接购买公司的产品。 14. **智能客服**:提供在线客服功能,解答用户的问题和提供帮助。 这些功能模块共同构成了一个完整的电商官网,涵盖了从用户了解公司和产品,到购买和支付,再到售后支持的全过程。 \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..c25a68d --- /dev/null +++ b/script.js @@ -0,0 +1,13 @@ +document.getElementById('contactForm').addEventListener('submit', function(event) { + event.preventDefault(); + const name = document.getElementById('name').value; + const email = document.getElementById('email').value; + const message = document.getElementById('message').value; + + if (name && email && message) { + alert('Thank you for contacting us, ' + name + '! We will get back to you shortly.'); + document.getElementById('contactForm').reset(); + } else { + alert('Please fill out all fields.'); + } +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..c311040 --- /dev/null +++ b/style.css @@ -0,0 +1,127 @@ +:root { + --primary-color: #4CAF50; + --secondary-color: #333; + --background-color: #f4f4f4; + --text-color: #333; + --white: #fff; +} + +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + color: var(--text-color); + background-color: var(--background-color); +} + +.container { + width: 90%; + max-width: 1200px; + margin: 0 auto; +} + +.header { + background-color: var(--primary-color); + color: var(--white); + padding: 1rem 0; +} + +.logo { + margin: 0; + font-size: 2rem; +} + +.nav ul { + list-style: none; + padding: 0; + display: flex; + justify-content: flex-end; +} + +.nav ul li { + margin-left: 1rem; +} + +.nav ul li a { + color: var(--white); + text-decoration: none; + font-weight: bold; +} + +.hero { + background: url('hero-bg.jpg') no-repeat center center/cover; + color: var(--white); + padding: 5rem 0; + text-align: center; +} + +.hero h2 { + font-size: 3rem; + margin-bottom: 1rem; +} + +.hero p { + font-size: 1.5rem; + margin-bottom: 2rem; +} + +.btn { + background-color: var(--primary-color); + color: var(--white); + padding: 0.75rem 1.5rem; + text-decoration: none; + border-radius: 5px; + transition: background-color 0.3s ease; +} + +.btn:hover { + background-color: darken(var(--primary-color), 10%); +} + +.about, .products, .contact { + padding: 4rem 0; + text-align: center; +} + +.product-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 1rem; +} + +.product-card { + background-color: var(--white); + padding: 1rem; + border-radius: 5px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +.product-card h3 { + margin-top: 0; +} + +.footer { + background-color: var(--secondary-color); + color: var(--white); + text-align: center; + padding: 1rem 0; +} + +@media (max-width: 768px) { + .nav ul { + flex-direction: column; + align-items: center; + } + + .nav ul li { + margin: 0.5rem 0; + } + + .hero h2 { + font-size: 2rem; + } + + .hero p { + font-size: 1.2rem; + } +} \ No newline at end of file