Changes to appshowcase.scroll.pub

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

Welcome to AppShowcase

+

Your gateway to innovative and transformative applications

+
+
+
+
+

Key Features

+
+
+
📱
+

Intuitive Design

+

Experience seamless navigation and user-friendly interfaces.

+
+
+
+

High Performance

+

Enjoy fast and efficient performance across all devices.

+
+
+
🔒
+

Secure & Reliable

+

Your data is protected with top-notch security measures.

+
+
+
+
+
+

What Our Users Say

+
+
+

"AppShowcase has revolutionized the way I discover new apps. Highly recommended!"

+

- Jane Doe

+
+
+

"The intuitive design and performance are unmatched. A must-have for app enthusiasts."

+

- John Smith

+
+
+
+
+
+

Connect with us on social media for the latest updates.

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://appshowcase.scroll.pub
+ metaTags
+ editButton /edit.html
+ title AppShowcase - Discover the Future of Apps
+ style.css
+ body.html
+ script.js
readme.scroll
Changed around line 1
+ # appshowcase.scroll.pub
+ Website generated by DeepSeek from prompt: 建立一个 app 介绍页
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function() {
+ const testimonials = document.querySelectorAll('.testimonial');
+ let currentTestimonial = 0;
+
+ function showTestimonial(index) {
+ testimonials.forEach((testimonial, i) => {
+ testimonial.style.display = i === index ? 'block' : 'none';
+ });
+ }
+
+ function nextTestimonial() {
+ currentTestimonial = (currentTestimonial + 1) % testimonials.length;
+ showTestimonial(currentTestimonial);
+ }
+
+ setInterval(nextTestimonial, 5000);
+ showTestimonial(currentTestimonial);
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #3498db;
+ --secondary-color: #2ecc71;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --white: #fff;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+ padding: 100px 20px;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 30px;
+ }
+
+ .cta-button {
+ background-color: var(--white);
+ color: var(--primary-color);
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+ transition: background-color 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background-color: var(--secondary-color);
+ color: var(--white);
+ }
+
+ .features {
+ padding: 50px 20px;
+ text-align: center;
+ }
+
+ .features h2 {
+ font-size: 2.5rem;
+ margin-bottom: 40px;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .feature-card {
+ background: var(--white);
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .feature-card .icon {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .feature-card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+ }
+
+ .feature-card p {
+ font-size: 1rem;
+ }
+
+ .testimonials {
+ background: var(--white);
+ padding: 50px 20px;
+ text-align: center;
+ }
+
+ .testimonials h2 {
+ font-size: 2.5rem;
+ margin-bottom: 40px;
+ }
+
+ .testimonial-slider {
+ display: flex;
+ justify-content: center;
+ gap: 20px;
+ }
+
+ .testimonial {
+ background: var(--background-color);
+ padding: 20px;
+ border-radius: 10px;
+ max-width: 400px;
+ }
+
+ .testimonial p {
+ font-size: 1rem;
+ margin-bottom: 10px;
+ }
+
+ .testimonial .author {
+ font-weight: bold;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 20px;
+ text-align: center;
+ }
+
+ footer p {
+ margin-bottom: 10px;
+ }
+
+ .social-links a {
+ color: var(--white);
+ text-decoration: none;
+ margin: 0 10px;
+ transition: color 0.3s ease;
+ }
+
+ .social-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content p {
+ font-size: 1rem;
+ }
+
+ .features h2, .testimonials h2 {
+ font-size: 2rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .testimonial-slider {
+ flex-direction: column;
+ align-items: center;
+ }
+ }