| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" href="/assets/icon/favicon.ico" type="image/x-icon">
- <title>Art Color - Free Printable Coloring Pages | Paint Online</title>
- <meta name="description"
- content="Explore over 20,000+ FREE printable coloring pages! Dive into a massive collection for all ages, perfect for instant download, home printing, or even online coloring directly in your browser.">
- <meta property="og:title" content="Art Color - Free Printable Coloring Pages | Paint Online">
- <meta property="og:description"
- content="Explore over 20,000+ FREE printable coloring pages! Dive into a massive collection for all ages, perfect for instant download, home printing, or even online coloring directly in your browser.">
- <link rel="stylesheet" href="/stylesheets/v2/styles.css">
- <style>
- .feature-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
- gap: 25px;
- margin: 30px 0;
- }
- .feature-card {
- background-color: #f9f9f9;
- padding: 25px;
- border-radius: 8px;
- border-left: 4px solid var(--secondary-color);
- transition: transform 0.3s ease;
- }
- .feature-card:hover {
- transform: translateY(-5px);
- box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
- }
- .feature-card h4 {
- color: var(--primary-color);
- margin-bottom: 10px;
- font-size: 1.2rem;
- }
- .collection-grid {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
- gap: 25px;
- }
- .collection-card {
- background-color: white;
- border-radius: 8px;
- overflow: hidden;
- box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
- margin-bottom: 20px;
- transition: all 0.3s ease;
- }
- .collection-image {
- max-height: 360px;
- background-color: #f0f0f0;
- overflow: hidden;
- position: relative;
- }
- .collection-image img {
- width: 100%;
- height: 100%;
- object-fit: fill;
- transition: transform 0.5s ease;
- }
- .collection-card:hover .collection-image img {
- transform: scale(1.05);
- }
- .collection-image picture {
- width: 100%;
- height: 100%;
- object-fit: fill;
- transition: transform 0.5s ease;
- }
- .collection-card:hover .collection-image picture {
- transform: scale(1.05);
- }
- .collection-content {
- padding: 15px;
- }
- .collection-title {
- font-weight: 600;
- margin-bottom: 8px;
- color: var(--text-color);
- }
- .collection-desc {
- font-size: 0.9rem;
- margin-bottom: 8px;
- color: var(--light-text);
- }
- .cta-btn {
- display: inline-block;
- background-color: var(--primary-color);
- color: white;
- padding: 12px 30px;
- border-radius: 30px;
- text-decoration: none;
- font-weight: 600;
- transition: all 0.3s ease;
- margin: 15px 10px 0;
- }
- .cta-btn:hover {
- background-color: var(--secondary-color);
- }
- .subscribe-form {
- background-color: var(--secondary-color);
- padding: 30px;
- border-radius: 10px;
- text-align: center;
- margin: 30px 0;
- }
- .subscribe-form h3 {
- color: white;
- margin-top: 0;
- }
- .form-group {
- margin: 15px 0;
- display: flex;
- flex-direction: column;
- }
- .form-group label {
- color: white;
- margin-bottom: 8px;
- font-weight: 500;
- }
- .form-group input {
- padding: 12px;
- border: none;
- border-radius: 5px;
- font-size: 1rem;
- }
- .benefits {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- gap: 15px;
- margin: 20px 0;
- }
- .benefit {
- background-color: white;
- padding: 10px 15px;
- border-radius: 20px;
- font-size: 0.9rem;
- display: flex;
- align-items: center;
- }
- .benefit svg {
- margin-right: 5px;
- color: var(--primary-color);
- }
- /* 视频和线稿区域样式 */
- .video-section {
- background-color: white;
- border-radius: 10px;
- padding: 40px;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
- margin: 50px 0;
- }
- .content-container {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 30px;
- margin-bottom: 10px;
- }
- /* 视频播放器样式 */
- .video-player {
- position: relative;
- background-color: #000;
- border-radius: 8px;
- overflow: hidden;
- cursor: pointer;
- aspect-ratio: 1/1;
- /* 修改为1:1比例 */
- }
- .video-player video {
- width: 100%;
- height: 100%;
- object-fit: cover;
- display: block;
- }
- .play-button {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 80px;
- height: 80px;
- background-color: rgba(255, 107, 107, 0.8);
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: all 0.3s ease;
- }
- .play-button:hover {
- background-color: rgba(255, 107, 107, 1);
- transform: translate(-50%, -50%) scale(1.1);
- }
- .play-button::after {
- content: "";
- width: 0;
- height: 0;
- border-top: 15px solid transparent;
- border-bottom: 15px solid transparent;
- border-left: 25px solid white;
- margin-left: 5px;
- }
- /* 线稿图样式 */
- .lineart-container {
- position: relative;
- border-radius: 8px;
- overflow: hidden;
- aspect-ratio: 1/1;
- /* 修改为1:1比例 */
- background-color: #f5f5f5;
- }
- .lineart-container img {
- width: 100%;
- height: 100%;
- object-fit: contain;
- /* 使用contain保持图像比例 */
- padding: 15px;
- /* 添加内边距,使图像不贴边 */
- }
- /* 线稿图悬停效果 */
- .lineart-overlay {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
- padding: 15px;
- color: white;
- opacity: 0;
- transition: opacity 0.3s ease;
- }
- .lineart-container:hover .lineart-overlay {
- opacity: 1;
- }
- .lineart-title {
- font-weight: 600;
- margin-bottom: 5px;
- }
- .lineart-desc {
- font-size: 0.9rem;
- opacity: 0.9;
- }
- .app-tutorial {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 40px;
- }
- .video-container {
- position: relative;
- background-color: #000;
- border-radius: 8px;
- overflow: hidden;
- cursor: pointer;
- /* aspect-ratio: 1/1; */
- }
- .video-container video {
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- object-fit: contain;
- display: block;
- }
- .tutorial-steps {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .step {
- margin-bottom: 30px;
- padding-left: 30px;
- position: relative;
- }
- .step-number {
- position: absolute;
- left: 0;
- top: 0;
- width: 30px;
- height: 30px;
- border-radius: 50%;
- background-color: var(--primary-color);
- color: white;
- display: flex;
- align-items: center;
- justify-content: center;
- font-weight: bold;
- }
- .step-title {
- font-size: 1.2rem;
- font-weight: 600;
- color: var(--text-color);
- margin-bottom: 10px;
- }
- .step-desc {
- color: var(--light-text);
- line-height: 1.7;
- }
- .app-badge-container {
- display: flex;
- justify-content: center;
- gap: 20px;
- margin-top: 30px;
- }
- .app-badge {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 160px;
- height: auto;
- background-color: black;
- border-radius: 8px;
- margin: 10px;
- transition: transform 0.3s ease;
- }
- .app-badge:hover {
- transform: translateY(-5px);
- }
- @media (max-width: 768px) {
- .feature-grid {
- grid-template-columns: 1fr;
- }
- .collection-grid {
- grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
- gap: 20px;
- }
- .content-container {
- grid-template-columns: 1fr;
- gap: 10px;
- }
- .video-section {
- padding: 20px;
- }
- .video-section h2 {
- font-size: 1.5rem;
- }
- .play-button {
- width: 60px;
- height: 60px;
- }
- .play-button::after {
- border-top: 12px solid transparent;
- border-bottom: 12px solid transparent;
- border-left: 20px solid white;
- }
- .app-tutorial {
- grid-template-columns: 1fr;
- }
- }
- </style>
- <script type="application/ld+json">
- {
- "@context": "https://schema.org",
- "@type": "WebSite",
- "name": "Art Color",
- "description": "Explore over 20,000+ FREE printable coloring pages! Dive into a massive collection for all ages, perfect for instant download, home printing, or even online coloring directly in your browser.",
- "url": "https://art.pcoloring.com",
- "mainEntityOfPage": "https://art.pcoloring.com",
- "publisher": {
- "@type": "Organization",
- "name": "Art Color",
- "logo": {
- "@type": "ImageObject",
- "url": "https://art.pcoloring.com/assets/icon/icon.webp",
- "width": 180,
- "height": 180
- }
- },
- "potentialAction": {
- "@type": "SearchAction",
- "target": {
- "@type": "EntryPoint",
- "urlTemplate": "https://art.pcoloring.com/coloring-page-gallery?search={search_term_string}"
- },
- "query-input": "required name=search_term_string"
- },
- "image": {
- "@type": "ImageObject",
- "url": "https://art.pcoloring.com/assets/images/hero.webp", // 替换为代表网站整体的图片
- "width": 820,
- "height": 360
- },
- "thumbnailUrl": "https://art.pcoloring.com/assets/images/hero.webp"
- }
- </script>
- <script type="application/ld+json">
- {
- "@context": "https://schema.org",
- "@type": "VideoObject",
- "name": "Dog Riding an Electric Scooter - Video Story Coloring Page",
- "description": "Watch the real-life story of a dog riding an electric scooter that inspired our coloring page. Then, color it yourself!",
- "thumbnailUrl": "https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/vs-poster/320/67b2b23b9c09d12e648ea25a.webp",
- "uploadDate": "2025-01-17T08:00:00+08:00", // 替换为实际上传日期和时区
- "contentUrl": "https://d1tdr4l5yr56j4.cloudfront.net/%E7%8B%97%E9%AA%91%E7%94%B5%E5%8A%A8%E8%BD%A602-story.m3u8",
- "duration": "PT11S",
- "potentialAction": {
- "@type": "WatchAction",
- "target": {
- "@type": "EntryPoint",
- "url": "https://art.pcoloring.com/video-coloring-pages"
- }
- },
- "interactionStatistic": {
- "@type": "InteractionCounter",
- "interactionType": "https://schema.org/WatchAction",
- "userInteractionCount": 2353
- }
- }
- </script>
- <script type="application/ld+json">
- {
- "@context": "https://schema.org",
- "@type": "VideoObject",
- "name": "How to Use Art Color App for Digital Coloring",
- "description": "Learn how to download, browse, color, save, and share your artworks seamlessly using the Art Color mobile and tablet app. Unleash your creativity on the go!",
- "thumbnailUrl": "https://art.pcoloring.com/assets/images/app-tutorial-poster.webp",
- "uploadDate": "2025-06-15T10:00:00+08:00",
- "contentUrl": "https://art.pcoloring.com/assets/video/art-number-coloring.mp4",
- "duration": "PT45S", // 例如:12秒
- "potentialAction": {
- "@type": "WatchAction",
- "target": {
- "@type": "EntryPoint",
- "url": "https://art.pcoloring.com"
- }
- },
- "interactionStatistic": {
- "@type": "InteractionCounter",
- "interactionType": "https://schema.org/WatchAction",
- "userInteractionCount": 3252 // 替换为实际观看次数
- }
- }
- </script>
- <script type='text/javascript'
- src='https://platform-api.sharethis.com/js/sharethis.js#property=685036ce6c1ae8001abaded7&product=sop'
- async='async'></script>
- </head>
- <!-- Google tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag() { dataLayer.push(arguments); }
- gtag('js', new Date());
- gtag('config', 'G-JBGGVGLHTP');
- </script>
- </head>
- <body>
- <%- include('header') %>
- <main class="container">
- <section>
- <h1>Welcome to Art Color</h1>
- <p>Your ultimate destination for creative expression! Dive into a massive universe of over <strong><a
- href="/coloring-page-gallery">20,000
- stunning coloring pages</a></strong>, meticulously crafted to spark joy and relaxation for all ages.
- Forget
- about complicated art supplies—here, creativity is at your fingertips.</p>
- <p>Explore our expansive gallery and choose your next masterpiece. Every single coloring page is
- <strong>completely free to download in high-definition for printing</strong>, so you can enjoy the classic
- feel of pen on paper. Or, for instant fun, unleash your inner artist with our <strong><a
- href="/tips-tricks/how-to-color-online">intuitive online digital
- coloring tool</a></strong>, available directly in your browser!
- </p>
- <p>But the fun doesn't stop there. Take your passion for coloring anywhere with our dedicated
- <strong><a href="/app">mobile and tablet apps</a></strong>. Whether you're at home or on the go, Art Color
- provides a seamless and
- engaging experience, perfectly designed to meet all your coloring needs and help you unleash your full
- creative potential. Start your colorful journey with us today!
- </p>
- </section>
- <section class="video-section">
- <a href="/video-coloring-pages" class="no-underline-link">
- <h2>Video Story Coloring Pages</h2>
- </a>
- <p>Art originates from life. This fun moment was captured by our artists and turned into a coloring page. Come
- and bring it to life with colors!</p>
- <div class="content-container">
- <!-- 左侧视频播放器 -->
- <div class="video-player" id="storyVideo">
- <video
- poster="https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/vs-poster/320/67b2b23b9c09d12e648ea25a.webp"
- controls>
- <source
- src="https://d1tdr4l5yr56j4.cloudfront.net/%E7%8B%97%E9%AA%91%E7%94%B5%E5%8A%A8%E8%BD%A602-story.m3u8"
- type="application/x-mpegURL">
- Your browser does not support the video tag.
- </video>
- <div class="play-button"></div>
- </div>
- <!-- 右侧线稿图 -->
- <div class="lineart-container">
- <a href="/coloring-page/676be5cb86bb4d3392aac198"><img
- src="https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/page/640/676be5cb86bb4d3392aac198.webp"
- alt="Coloring Line Art"></a>
- <div class="lineart-overlay">
- <div class="lineart-title">Dog Riding an Electric Scooter</div>
- <div class="lineart-desc">Click to download or color online along with the video</div>
- </div>
- </div>
- </div>
- <a href="/video-coloring-pages"><button class="btn">View More >></button></a>
- </section>
- <section>
- <a href="/flower-coloring-pages" class="no-underline-link">
- <h2>New Collection: Flower Coloring Pages</h2>
- </a>
- <p>From peonies and tulips to sunflowers and roses, come pick your favorite flowers to color!</p>
- <div class="collection-card">
- <div class="collection-image">
- <a href="/flower-coloring-pages">
- <picture>
- <source media="(min-width: 768px)" srcset="/assets/coloring-pages/flower-3-1.webp">
- <source media="(max-width: 767px)" srcset="/assets/coloring-pages/flower-16-9.webp">
- <img src="/assets/coloring-pages/flower-16-9.webp" alt="Flower Coloring Pages">
- </picture>
- </a>
- </div>
- <div class="collection-content">
- <div class="collection-title">Beautiful Flower Bouquet</div>
- <div class="collection-desc">A vibrant bouquet featuring a mix of seasonal flowers, perfect for practicing
- color blending and shading.</div>
- <a href="/flower-coloring-pages"><button class="btn">View More >></button></a>
- </div>
- </div>
- <div class="collection-card">
- <div class="collection-image">
- <a href="/zentangle-coloring-pages">
- <picture>
- <source media="(min-width: 768px)" srcset="/assets/coloring-pages/zentangle-3-1.webp">
- <source media="(max-width: 767px)" srcset="/assets/coloring-pages/zentangle-16-9.webp">
- <img src="/assets/coloring-pages/zentangle-16-9.webp" alt="Zentangle Coloring Pages">
- </picture>
- </a>
- </div>
- <div class="collection-content">
- <div class="collection-title">Creative Zentangle Art</div>
- <div class="collection-desc">A blend of structured patterns and artistic imagination in intricate doodle
- art.</div>
- <a href="/zentangle-coloring-pages"><button class="btn">View More >></button></a>
- </div>
- </div>
- <div class="collection-grid">
- <a href="/mandala-coloring-pages" class="collection-card">
- <div class="collection-image" style="height: 200px">
- <img src="/assets/coloring-pages/mandala-16-9.webp" alt="Mandalas coloring pages">
- </div>
- <div class="collection-content">
- <div class="collection-title">Mandala Coloring Pages</div>
- <p class="collection-desc">Explore intricate patterns perfect for experimenting with bold color
- combinations and symmetrical designs.</p>
- </div>
- </a>
- <a href="/simple-coloring-pages" class="collection-card">
- <div class="collection-image" style="height: 200px">
- <img src="/assets/coloring-pages/simple-16-9.webp" alt="Simple coloring pages">
- </div>
- <div class="collection-content">
- <div class="collection-title">Simple Coloring Pages For Kids</div>
- <p class="collection-desc">Easy-peasy coloring fun for little artists, designed just for kids!</p>
- </div>
- </a>
- <a href="/fantasy-coloring-pages" class="collection-card">
- <div class="collection-image" style="height: 200px">
- <img src="/assets/coloring-pages/fantasy-16-9.webp" alt="Fantasy coloring pages">
- </div>
- <div class="collection-content">
- <div class="collection-title">Fantasy Coloring Pages</div>
- <p class="collection-desc">Let your imagination soar with dragons, unicorns, and magical
- landscapes. Perfect for dramatic color combinations.</p>
- </div>
- </a>
- </div>
- <a href="/coloring-pages"><button class="btn">More Collections >></button></a>
- </section>
- <section>
- <h2>Explore over 20,000 free printable coloring pages for all ages</h2>
- <p style="text-align: start;">Dive into our <strong><a href="/coloring-page-gallery">Coloring Page
- Gallery</a></strong> with 20,000+ free printable designs! Explore
- via intuitive search filters—find themes, styles, or difficulty levels in seconds. Print your favorites or
- color online with our digital tools—all completely free. Unleash creativity today!</p>
- <h3>2025 Latest Coloring Pages:</h3>
- <div class="coloring-grid">
- <% latest.forEach(item=> { %>
- <div class="coloring-card">
- <div data-content-id="<%= item._id %>" class="coloring-image">
- <a href="<%= item.uri %>"><img src="<%= item.thumb %>" alt="<%= item.title %>"></a>
- </div>
- <div class="coloring-content">
- <div class="coloring-title">
- <%= item.title %>
- </div>
- <div class="coloring-author">by <a href="/coloring-page-gallery?author=<%= item.user.username %>">
- <%= item.user.username %>
- </a></div>
- <div class="coloring-meta">
- <div class="date">
- <%= item.publishTime %>
- </div>
- <div class="views">
- <%= item.totalStartCount %>
- </div>
- </div>
- <div class="coloring-tags">
- <% item.tags.forEach(tag=> { %>
- <a href="/coloring-page-gallery?category=<%= tag %>"><span class="tag" data-tag="<%= tag %>">
- <%= tag %>
- </span></a>
- <% }); %>
- </div>
- </div>
- </div>
- <% }); %>
- </div>
- <a href="/coloring-page-gallery" class="cta-btn">More Coloring Pages >></a>
- </section>
- <section class="subscribe-form">
- <h3>Free Coloring Pages Sent to Your Inbox</h3>
- <p>Get the Eclectic Coloring Book delivered to you and start coloring today.</p>
- <div class="benefits">
- <div class="benefit">
- <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path d="M21 7L9 19L3 13" stroke="currentColor" stroke-width="2" stroke-linecap="round"
- stroke-linejoin="round" />
- </svg>
- Daily new coloring pages updated synchronously
- </div>
- <div class="benefit">
- <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path>
- <path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>
- </svg>
- Stay updated with Art Color community dynamics in real time
- </div>
- <div class="benefit">
- <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path
- d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20Z">
- </path>
- <path d="M12 12C10.9 12 10 11.1 10 10C10 8.9 10.9 8 12 8C13.1 8 14 8.9 14 10C14 11.1 13.1 12 12 12Z">
- </path>
- </svg>
- Access to Subscriber Central for exclusive content
- </div>
- </div>
- <form id="subscribeForm">
- <div class="form-group">
- <label for="email">Enter your email to receive your Eclectic Coloring Book instantly</label>
- <input type="email" id="email" placeholder="your@email.com" required>
- <div id="emailError" class="error-message" style="color: red; display: none;"></div>
- </div>
- <button type="submit" class="btn btn-accent">Get My Coloring Book</button>
- <div id="formMessage" class="form-message" style="margin-top: 15px; display: none;"></div>
- </form>
- </section>
- <section>
- <h2>Unleash Your Creativity</h2>
- <p>Art Color offers free printable coloring pages and tutorials for everyone. Whether you're a
- beginner
- or an experienced artist, there's something for you here.</p>
- <div class="feature-grid">
- <div class="feature-card">
- <h4>Print and Color at Home</h4>
- <p>Print your coloring page to color at home with markers, colored pencils, or crayons. Create your own cozy
- coloring corner!</p>
- </div>
- <div class="feature-card">
- <h4>Digital Coloring Online</h4>
- <p>Use our APP client to color according to number guidance on your phone/tablet, or color online directly
- on the web</p>
- </div>
- <div class="feature-card">
- <h4>All Ages Welcome</h4>
- <p>From simple designs for kids to intricate patterns for adults, our collection has something for every
- skill
- level and age.</p>
- </div>
- </div>
- <p>We bring the imagery, you bring your imagination! Start exploring our collection of free coloring pages today
- and let your creativity shine.</p>
- </section>
- <section>
- <h2>How to Use Our Coloring App for Digtal Coloring </h2>
- <div class="app-tutorial">
- <div class="video-container" id="appVideo">
- <video muted loop>
- <source src="/assets/video/art-number-coloring.mp4" type="video/mp4">
- Your browser does not support the video tag.
- </video>
- <div class="play-button"></div>
- </div>
- <div class="tutorial-steps">
- <div class="step">
- <div class="step-number">1</div>
- <div class="step-title">Download the App</div>
- <div class="step-desc">Visit your device's app store and search for "Art Coloring Book". Click download to
- install the app on your phone or tablet.</div>
- </div>
- <div class="step">
- <div class="step-number">2</div>
- <div class="step-title">Browse Coloring Pages</div>
- <div class="step-desc">Explore our library of thousand of coloring pages sorted by category, difficulty,
- or
- popularity. Find the perfect page for your mood.</div>
- </div>
- <div class="step">
- <div class="step-number">3</div>
- <div class="step-title">Start Digital Coloring</div>
- <div class="step-desc">Select a coloring page and complete the coloring according to the number guidance.
- </div>
- </div>
- <div class="step">
- <div class="step-number">4</div>
- <div class="step-title">Save and Share</div>
- <div class="step-desc">Save your colored page to your profile, share it with friends on social media, or
- print it out to display in your home.</div>
- </div>
- </div>
- </div>
- <div class="app-badge-container">
- <a href="itms-apps://itunes.apple.com/app/id1575480118" target="_blank" class="app-badge">
- <img src="/assets/icon/icon-app-store.svg" alt="Download on the App Store" style="width:100%">
- </a>
- <a href="https://play.google.com/store/apps/details?id=com.pcoloring.art.puzzle.color.by.number"
- target="_blank" class="app-badge">
- <img src="/assets/icon/icon-google-play.svg" alt="Get it on Google Play" style="width:100%">
- </a>
- </div>
- </section>
- </main>
- <%- include('footer') %>
- <script src="/scripts/script.js"></script>
- <script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
- <script>
- const storyVideo = document.getElementById('storyVideo');
- const video = storyVideo.querySelector('video');
- const playButton = storyVideo.querySelector('.play-button');
- // 视频播放控制
- if (Hls.isSupported()) {
- var hls = new Hls();
- var url = 'https://d1tdr4l5yr56j4.cloudfront.net/%E7%8B%97%E9%AA%91%E7%94%B5%E5%8A%A8%E8%BD%A602-story.m3u8';
- hls.loadSource(url);
- hls.attachMedia(video);
- } else if (video.canPlayType('application/vnd.apple.mpegurl')) {
- // Safari 不支持 hls.js 但原生支持 HLS
- video.src = 'https://d1tdr4l5yr56j4.cloudfront.net/%E7%8B%97%E9%AA%91%E7%94%B5%E5%8A%A8%E8%BD%A602-story.m3u8';
- } else {
- // 浏览器不支持 HLS
- console.error('Your browser does not support HLS.');
- }
- playButton.addEventListener('click', () => {
- video.play();
- playButton.style.display = 'none';
- });
- // 视频播放时隐藏play button
- video.addEventListener('play', () => {
- playButton.style.display = 'none';
- });
- // 视频暂停时显示播放按钮
- video.addEventListener('pause', () => {
- playButton.style.display = 'flex';
- });
- // 视频结束时显示播放按钮
- video.addEventListener('ended', () => {
- playButton.style.display = 'flex';
- });
- </script>
- <script>
- // 视频播放控制
- const appVideo = document.getElementById('appVideo');
- const video2 = appVideo.querySelector('video');
- const playButton2 = appVideo.querySelector('.play-button');
- appVideo.addEventListener('click', () => {
- if (video2.paused) {
- video2.play();
- playButton2.style.display = 'none';
- } else {
- video2.pause();
- playButton2.style.display = 'flex';
- }
- });
- // 视频结束时显示播放按钮
- video2.addEventListener('ended', () => {
- playButton2.style.display = 'flex';
- });
- </script>
- <script>
- document.addEventListener('DOMContentLoaded', () => {
- // 订阅表单提交处理
- const subscribeForm = document.getElementById('subscribeForm');
- const emailInput = document.getElementById('email');
- const emailError = document.getElementById('emailError');
- const formMessage = document.getElementById('formMessage');
- subscribeForm.addEventListener('submit', async (e) => {
- e.preventDefault();
- emailError.style.display = 'none';
- formMessage.style.display = 'none';
- // 简单的前端验证
- if (!emailInput.value.trim()) {
- emailError.textContent = 'Please enter your email address';
- emailError.style.display = 'block';
- return;
- }
- const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
- if (!emailRegex.test(emailInput.value.trim())) {
- emailError.textContent = 'Please enter a valid email address';
- emailError.style.display = 'block';
- return;
- }
- try {
- // 显示加载状态
- const submitButton = subscribeForm.querySelector('button');
- const originalText = submitButton.textContent;
- submitButton.disabled = true;
- submitButton.textContent = 'Sending...';
- // 发送数据到后端
- const response = await fetch('/api/subscribe', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- body: JSON.stringify({
- email: emailInput.value.trim()
- })
- });
- const data = await response.json();
- // 恢复按钮状态
- submitButton.disabled = false;
- submitButton.textContent = originalText;
- if (response.ok) {
- // 成功处理
- formMessage.textContent = 'Thank you! Your coloring book has been sent to your email.';
- formMessage.style.color = 'green';
- formMessage.style.display = 'block';
- // 清空表单
- emailInput.value = '';
- } else {
- // 错误处理
- formMessage.textContent = data.message || 'An error occurred. Please try again later.';
- formMessage.style.color = 'red';
- formMessage.style.display = 'block';
- }
- } catch (error) {
- console.error('Error submitting form:', error);
- formMessage.textContent = 'An error occurred. Please try again later.';
- formMessage.style.color = 'red';
- formMessage.style.display = 'block';
- }
- });
- });
- </script>
- </body>
- </html>
|