| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Flower Coloring Pages - Art Color</title>
- <style>
- :root {
- --primary-color: #ff6b6b;
- --secondary-color: #4ecdc4;
- --accent-color: #ffd166;
- --background-color: #f9f9f9;
- --text-color: #333;
- --light-text: #666;
- }
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- }
- body {
- background-color: var(--background-color);
- color: var(--text-color);
- line-height: 1.6;
- }
- .container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 0 20px;
- }
- header {
- background-color: var(--primary-color);
- color: white;
- padding: 30px 0;
- text-align: center;
- position: relative;
- }
- .header-logo {
- font-size: 1.8rem;
- font-weight: 700;
- letter-spacing: 1px;
- }
- .breadcrumb {
- margin: 20px 0;
- font-size: 0.9rem;
- color: var(--light-text);
- }
- .breadcrumb a {
- color: var(--primary-color);
- text-decoration: none;
- }
- .breadcrumb a:hover {
- text-decoration: underline;
- }
- .hero-section {
- margin-bottom: 40px;
- }
- .hero-image {
- width: 100%;
- height: 0;
- padding-bottom: 56.25%;
- /* 16:9 aspect ratio */
- background-color: #f0f0f0;
- position: relative;
- overflow: hidden;
- border-radius: 10px;
- margin-bottom: 20px;
- }
- .hero-image img {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .hero-content {
- background-color: white;
- padding: 30px;
- border-radius: 10px;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
- }
- .hero-title {
- color: var(--primary-color);
- font-size: 2.2rem;
- margin-bottom: 15px;
- }
- .hero-description {
- color: var(--light-text);
- margin-bottom: 20px;
- }
- .filter-section {
- margin: 30px 0;
- display: flex;
- flex-wrap: wrap;
- gap: 10px;
- justify-content: center;
- }
- .filter-btn {
- background-color: var(--secondary-color);
- color: white;
- border: none;
- padding: 8px 15px;
- border-radius: 20px;
- cursor: pointer;
- transition: all 0.3s ease;
- }
- .filter-btn:hover,
- .filter-btn.active {
- background-color: var(--primary-color);
- }
- .coloring-grid {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
- gap: 30px;
- margin-bottom: 40px;
- }
- .coloring-card {
- background-color: white;
- border-radius: 10px;
- overflow: hidden;
- box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
- transition: transform 0.3s ease;
- cursor: pointer;
- border: 1px solid #eee;
- }
- .coloring-card:hover {
- transform: translateY(-8px);
- }
- .coloring-image {
- aspect-ratio: 1/1;
- background-color: #f0f0f0;
- overflow: hidden;
- position: relative;
- }
- .coloring-image img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- transition: transform 0.5s ease;
- }
- .coloring-card:hover .coloring-image img {
- transform: scale(1.05);
- }
- .coloring-info {
- padding: 20px;
- }
- .coloring-title {
- font-weight: 700;
- font-size: 1.2rem;
- margin-bottom: 8px;
- color: var(--primary-color);
- }
- .coloring-details {
- font-size: 0.9rem;
- color: var(--light-text);
- display: flex;
- justify-content: space-between;
- }
- .gallery-link {
- text-align: center;
- margin-top: 30px;
- font-size: 1.1rem;
- }
- .gallery-link a {
- color: var(--primary-color);
- text-decoration: none;
- font-weight: 600;
- display: inline-flex;
- align-items: center;
- }
- .gallery-link a:hover {
- text-decoration: underline;
- }
- .gallery-link svg {
- margin-left: 8px;
- width: 16px;
- height: 16px;
- }
- .how-to-section {
- background-color: white;
- padding: 40px;
- border-radius: 10px;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
- margin: 60px 0;
- }
- .how-to-title {
- color: var(--secondary-color);
- font-size: 1.8rem;
- margin-bottom: 30px;
- text-align: center;
- }
- .how-to-steps {
- display: grid;
- grid-template-columns: 1fr;
- gap: 30px;
- }
- .how-to-step {
- padding: 25px;
- border-radius: 10px;
- border: 1px solid #eee;
- transition: all 0.3s ease;
- }
- .how-to-step:hover {
- transform: translateY(-5px);
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
- }
- .step-header {
- display: flex;
- align-items: center;
- margin-bottom: 15px;
- }
- .step-number {
- width: 40px;
- height: 40px;
- background-color: var(--primary-color);
- color: white;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 1.2rem;
- font-weight: 700;
- margin-right: 15px;
- }
- .step-title {
- font-size: 1.3rem;
- font-weight: 600;
- color: var(--secondary-color);
- }
- .benefits-section {
- margin-top: 60px;
- }
- .benefits-title {
- color: var(--secondary-color);
- font-size: 1.8rem;
- margin-bottom: 30px;
- text-align: center;
- }
- .benefits-list {
- display: grid;
- grid-template-columns: 1fr;
- gap: 20px;
- }
- .benefit {
- display: flex;
- align-items: start;
- }
- .benefit-icon {
- width: 40px;
- height: 40px;
- background-color: var(--secondary-color);
- color: white;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 15px;
- flex-shrink: 0;
- }
- .benefit-content {
- flex-grow: 1;
- }
- .benefit-title {
- font-size: 1.1rem;
- font-weight: 600;
- margin-bottom: 5px;
- }
- footer {
- background-color: var(--text-color);
- color: white;
- text-align: center;
- padding: 30px 0;
- margin-top: 50px;
- }
- .footer-content {
- max-width: 600px;
- margin: 0 auto;
- }
- @media (max-width: 768px) {
- .hero-title {
- font-size: 1.8rem;
- }
- .coloring-grid {
- grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
- gap: 20px;
- }
- .coloring-info {
- padding: 15px;
- }
- .coloring-title {
- font-size: 1.1rem;
- }
- .filter-section {
- justify-content: flex-start;
- }
- .gallery-link {
- font-size: 1rem;
- }
- .how-to-section {
- padding: 25px;
- }
- .how-to-title,
- .benefits-title {
- font-size: 1.5rem;
- }
- .step-title {
- font-size: 1.2rem;
- }
- }
- </style>
- </head>
- <body>
- <header>
- <div class="container">
- <div class="header-logo">Art Color</div>
- <p>Free Printable Coloring Pages and Birthday Cards</p>
- </div>
- </header>
- <div class="container">
- <div class="breadcrumb">
- <a href="/">Home</a> > <a href="/coloring-pages">Coloring Pages</a> > Flower Coloring Pages
- </div>
- <div class="hero-section">
- <div class="hero-image">
- <img src="https://picsum.photos/1200/675?random=40" alt="Flower Coloring Pages">
- </div>
- <div class="hero-content">
- <h2 class="hero-title">Flower Coloring Pages</h2>
- <p class="hero-description">
- Explore our beautiful collection of flower coloring pages! From delicate roses to vibrant sunflowers, these
- designs offer endless possibilities for creativity. Perfect for all ages and skill levels, our flower coloring
- pages are a great way to relax, express your artistic side, and learn about different types of flowers.
- </p>
- <p class="hero-description">
- Whether you're looking for simple designs for kids or intricate patterns for adults, we have something for
- everyone. Print them out and use your favorite coloring tools to bring these beautiful flowers to life!
- </p>
- </div>
- </div>
- <div class="filter-section">
- <button class="filter-btn active">All Flowers</button>
- <button class="filter-btn">Roses</button>
- <button class="filter-btn">Sunflowers</button>
- <button class="filter-btn">Tulips</button>
- <button class="filter-btn">Daisies</button>
- <button class="filter-btn">Orchids</button>
- <button class="filter-btn">Lilies</button>
- </div>
- <div class="coloring-grid">
- <!-- Coloring Page 1 -->
- <div class="coloring-card">
- <div class="coloring-image">
- <img src="https://picsum.photos/400/400?random=41" alt="Rose Coloring Page">
- </div>
- <div class="coloring-info">
- <div class="coloring-title">Beautiful Rose</div>
- <div class="coloring-details">
- <span>Difficulty: Medium</span>
- <span>Size: 8.5x11"</span>
- </div>
- </div>
- </div>
- <!-- Coloring Page 2 -->
- <div class="coloring-card">
- <div class="coloring-image">
- <img src="https://picsum.photos/400/400?random=42" alt="Sunflower Coloring Page">
- </div>
- <div class="coloring-info">
- <div class="coloring-title">Happy Sunflower</div>
- <div class="coloring-details">
- <span>Difficulty: Easy</span>
- <span>Size: 8.5x11"</span>
- </div>
- </div>
- </div>
- <!-- Coloring Page 3 -->
- <div class="coloring-card">
- <div class="coloring-image">
- <img src="https://picsum.photos/400/400?random=43" alt="Tulip Garden">
- </div>
- <div class="coloring-info">
- <div class="coloring-title">Tulip Garden</div>
- <div class="coloring-details">
- <span>Difficulty: Medium</span>
- <span>Size: 8.5x11"</span>
- </div>
- </div>
- </div>
- <!-- Coloring Page 4 -->
- <div class="coloring-card">
- <div class="coloring-image">
- <img src="https://picsum.photos/400/400?random=44" alt="Wild Daisies">
- </div>
- <div class="coloring-info">
- <div class="coloring-title">Wild Daisies</div>
- <div class="coloring-details">
- <span>Difficulty: Easy</span>
- <span>Size: 8.5x11"</span>
- </div>
- </div>
- </div>
- <!-- Coloring Page 5 -->
- <div class="coloring-card">
- <div class="coloring-image">
- <img src="https://picsum.photos/400/400?random=45" alt="Orchid Beauty">
- </div>
- <div class="coloring-info">
- <div class="coloring-title">Orchid Beauty</div>
- <div class="coloring-details">
- <span>Difficulty: Hard</span>
- <span>Size: 8.5x11"</span>
- </div>
- </div>
- </div>
- <!-- Coloring Page 6 -->
- <div class="coloring-card">
- <div class="coloring-image">
- <img src="https://picsum.photos/400/400?random=46" alt="Lily of the Valley">
- </div>
- <div class="coloring-info">
- <div class="coloring-title">Lily of the Valley</div>
- <div class="coloring-details">
- <span>Difficulty: Medium</span>
- <span>Size: 8.5x11"</span>
- </div>
- </div>
- </div>
- <!-- Coloring Page 7 -->
- <div class="coloring-card">
- <div class="coloring-image">
- <img src="https://picsum.photos/400/400?random=47" alt="Flower Bouquet">
- </div>
- <div class="coloring-info">
- <div class="coloring-title">Flower Bouquet</div>
- <div class="coloring-details">
- <span>Difficulty: Medium</span>
- <span>Size: 8.5x11"</span>
- </div>
- </div>
- </div>
- <!-- Coloring Page 8 -->
- <div class="coloring-card">
- <div class="coloring-image">
- <img src="https://picsum.photos/400/400?random=48" alt="Tropical Flowers">
- </div>
- <div class="coloring-info">
- <div class="coloring-title">Tropical Flowers</div>
- <div class="coloring-details">
- <span>Difficulty: Hard</span>
- <span>Size: 8.5x11"</span>
- </div>
- </div>
- </div>
- </div>
- <div class="gallery-link">
- <a href="/gallery">
- Want to see more flower coloring pages? Click here
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path d="M13 5L19 12L13 19" stroke="currentColor" stroke-width="2" stroke-linecap="round"
- stroke-linejoin="round" />
- </svg>
- </a>
- </div>
- <div class="how-to-section">
- <h2 class="how-to-title">How to Get Use of Our Coloring Pages</h2>
- <div class="how-to-steps">
- <div class="how-to-step">
- <div class="step-header">
- <div class="step-number">1</div>
- <h3 class="step-title">How to Download</h3>
- </div>
- <p>Downloading our coloring pages is quick and easy. Simply browse through our extensive collection and select
- the design you love. Click on the coloring card, and you'll be redirected to the detail page. There, you'll
- find a "Download" button – click it to save the high-quality PDF file to your device. The file is
- printer-friendly and perfect for both home and classroom use.</p>
- </div>
- <div class="how-to-step">
- <div class="step-header">
- <div class="step-number">2</div>
- <h3 class="step-title">How to Print</h3>
- </div>
- <p>Once downloaded, open the PDF file and print it using your home printer on standard 8.5x11" paper. For the
- best results, use high-quality paper or cardstock. You can print as many copies as you need – perfect for
- personal use, classroom activities, or sharing with friends and family.</p>
- </div>
- <div class="how-to-step">
- <div class="step-header">
- <div class="step-number">3</div>
- <h3 class="step-title">How to Color Online</h3>
- </div>
- <p>Prefer to color digitally? No problem! Just click the "Color Online" button on any coloring page detail
- page. You'll instantly enter our interactive coloring game interface where you can use a variety of digital
- tools to color. With easy-to-use controls and color-by-number guidance, you can create beautiful artwork
- with just a few clicks of your mouse or taps on your touchscreen. No artistic skills required!</p>
- </div>
- </div>
- <div class="benefits-section">
- <h2 class="benefits-title">The Benefits of Coloring</h2>
- <div class="benefits-list">
- <div class="benefit">
- <div class="benefit-icon">
- <svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path
- d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
- stroke="currentColor" stroke-width="2" />
- <path
- d="M9 10C9 11.6569 10.3431 13 12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10Z"
- stroke="currentColor" stroke-width="2" />
- <path
- d="M9.00021 17C9.00021 17.5304 9.21074 18.0391 9.5858 18.4142C9.96086 18.7893 10.4696 19 11.0002 19H13.0002C13.5308 19 14.0395 18.7893 14.4146 18.4142C14.7896 18.0391 15.0002 17.5304 15.0002 17"
- stroke="currentColor" stroke-width="2" />
- </svg>
- </div>
- <div class="benefit-content">
- <h4 class="benefit-title">Stress Relief</h4>
- <p>Coloring has been shown to reduce stress and anxiety by promoting mindfulness and focusing the mind on
- the present moment.</p>
- </div>
- </div>
- <div class="benefit">
- <div class="benefit-icon">
- <svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path
- d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
- stroke="currentColor" stroke-width="2" />
- <path d="M9 16L12 13L15 16" stroke="currentColor" stroke-width="2" stroke-linecap="round"
- stroke-linejoin="round" />
- </svg>
- </div>
- <div class="benefit-content">
- <h4 class="benefit-title">Enhances Creativity</h4>
- <p>Choosing colors and creating unique color combinations stimulates creativity and artistic expression.
- </p>
- </div>
- </div>
- <div class="benefit">
- <div class="benefit-icon">
- <svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path
- d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
- stroke="currentColor" stroke-width="2" />
- <path d="M9 12H15" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
- <path d="M12 9V15" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
- </svg>
- </div>
- <div class="benefit-content">
- <h4 class="benefit-title">Improves Focus</h4>
- <p>Coloring requires concentration, which can improve focus and attention span over time.</p>
- </div>
- </div>
- <div class="benefit">
- <div class="benefit-icon">
- <svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path
- d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
- stroke="currentColor" stroke-width="2" />
- <path
- d="M9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12Z"
- stroke="currentColor" stroke-width="2" />
- </svg>
- </div>
- <div class="benefit-content">
- <h4 class="benefit-title">Therapeutic Activity</h4>
- <p>Coloring is a therapeutic activity that can help improve mood and promote a sense of accomplishment.
- </p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <footer>
- <div class="container footer-content">
- <p>Art Color - Free Printable Coloring Pages and Birthday Cards</p>
- <p>Bringing creativity to your fingertips, one coloring page at a time.</p>
- </div>
- </footer>
- <script>
- // 过滤按钮点击事件
- const filterButtons = document.querySelectorAll('.filter-btn');
- filterButtons.forEach(button => {
- button.addEventListener('click', () => {
- // 移除所有按钮的active状态
- filterButtons.forEach(btn => btn.classList.remove('active'));
- // 添加当前按钮的active状态
- button.classList.add('active');
- // 在实际应用中,这里会根据选择的过滤器加载对应的填色页
- const filter = button.textContent;
- alert(`Filtering by: ${filter}`);
- });
- });
- // 填色页卡片点击事件
- const coloringCards = document.querySelectorAll('.coloring-card');
- coloringCards.forEach(card => {
- card.addEventListener('click', () => {
- // 在实际应用中,这里会跳转到对应的填色页详情页
- const title = card.querySelector('.coloring-title').textContent;
- alert(`即将跳转到 "${title}" 的详情页`);
- });
- });
- </script>
- </body>
- </html>
|