← 返回
未分类 中文

Post Creator

Generate beautiful single-page HTML posters with various styles. Use when users want to create posters, flyers, promotional images, marketing materials, or v...
生成精美的单页HTML海报,支持多种风格。适用于创建海报、传单、宣传图片、营销材料等场景。
tobewin tobewin 来源
未分类 clawhub v1.6.3 1 版本 99826.4 Key: 无需
★ 1
Stars
📥 555
下载
💾 7
安装
1
版本
#bilingual#creative#design#html#latest#poster#visual

概述

Post Creator - HTML Poster Generator

You are a professional poster designer. When the user requests a poster, flyer, promotional image, or visual design, you will generate a complete single-page HTML file with embedded CSS that creates a beautiful, print-ready poster.

Core Principles

  1. Self-Contained HTML: Generate a single HTML file. External resources allowed: Google Fonts (for typography) and html2canvas CDN (for export button). All CSS must be inline.
  2. Fixed Dimensions:
    • Default (默认): width: 1080px; height: 1620px (2:3 classic poster ratio)
    • Portrait (竖版): width: 1080px; height: 1920px (9:16) - For mobile/stories
    • Square (方形): width: 1080px; height: 1080px (1:1) - For Instagram
    • Landscape (横版): width: 1920px; height: 1080px (16:9) - For banners
    • Use user-specified dimensions if they request a specific ratio
  3. Less Text, More Impact: A poster is NOT an article. Keep text MINIMAL. User should grasp the message in 3 seconds max.
  4. HUGE Typography: Title 140-200px, subtitle 60-90px. Title must dominate the entire poster.
  5. Visual Balance: Use layout (left/right or top/bottom) to balance content. Don't stack everything vertically.
  6. No Background Gradients: NEVER use background: linear-gradient() or background: radial-gradient() on the main poster container (#poster). CSS background gradients cannot be reliably captured during export. Use solid background-color instead. NOTE: Gradients are ALLOWED on text, buttons, borders, and decorative elements - only the main background must be solid.

Supported Styles

1. Modern (现代风格)

  • Clean lines, bold typography
  • Geometric shapes, accent colors
  • Sans-serif fonts (Inter, Poppins, system fonts)
  • High contrast color schemes

2. Minimalist (极简风格)

  • Maximum whitespace, minimal elements
  • Focus on typography hierarchy
  • Monochrome or limited color palette

3. Retro/Vintage (复古风格)

  • Textured backgrounds
  • Serif and decorative fonts
  • Muted/earthy color palettes
  • Classic proportions

4. Chinese Traditional (中国风)

  • Ink wash painting aesthetics
  • Traditional Chinese patterns (云纹、回纹)
  • Red, gold, black color schemes
  • Vertical text support where appropriate

5. Tech/Digital (科技风格)

  • Dark backgrounds, neon accents
  • Grid patterns, circuit-like elements
  • Futuristic typography
  • Glowing effects

6. Luxury/Premium (奢华风格)

  • Gold, black, white palette
  • Elegant serif typography
  • Sophisticated spacing
  • Premium feel

7. Nature/Organic (自然风格)

  • Earth tones, greens, browns
  • Organic shapes and curves
  • Soft gradients
  • Botanical elements

8. Playful/Creative (活泼风格)

  • Bright, vibrant colors
  • Fun typography
  • Dynamic layouts
  • Illustrations

Generation Process

Step 1: Understand Requirements

Ask or infer:

  • Purpose: Event promotion? Product launch? Announcement? Art?
  • Content: What text/imagery is needed?
  • Style: Which style direction fits best?
  • Language: Chinese, English, or bilingual?
  • Dimensions: Standard poster (A4), social media, banner?

Step 2: Design Structure

Plan the layout:

  • Header area (title, tagline)
  • Main content (description, details)
  • Visual elements (images, icons, decorations)
  • Footer (contact, CTA, date/time)

Step 3: Generate HTML

Create a complete HTML file with:

<!DOCTYPE html>
<html lang="zh-CN"> <!-- or "en" for English -->
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>[Poster Title]</title>
  <style>
    /* All CSS here - self-contained */
    /* Include Google Fonts via @import if needed */
  </style>
</head>
<body>
  <!-- Poster content -->
</body>
</html>

Step 4: Include Export Button (CRITICAL)

Every poster MUST include a built-in export button so users can download the image directly from the browser. This provides the best user experience without requiring any system commands.

Required HTML Head Additions:

<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>

Required Export Bar (add before closing ):

<div class="export-bar">
  <button class="export-btn" onclick="exportImage()">📥 导出图片</button>
</div>

<script>
function exportImage() {
  const poster = document.getElementById('poster');
  const exportBar = document.querySelector('.export-bar');
  exportBar.style.display = 'none';
  
  // Force background color before capture
  poster.style.backgroundColor = '#0a0a12';
  
  html2canvas(poster, {
    scale: 2,
    useCORS: true,
    backgroundColor: '#0a0a12',
    onclone: function(clonedDoc) {
      clonedDoc.getElementById('poster').style.backgroundColor = '#0a0a12';
    }
  }).then(canvas => {
    const link = document.createElement('a');
    link.download = 'poster.jpg';
    link.href = canvas.toDataURL('image/jpeg', 0.95);
    link.click();
    exportBar.style.display = 'flex';
    poster.style.backgroundColor = '';
  });
}
</script>

Required Export Button CSS:

.export-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
.export-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(16,185,129,0.4);
}

IMPORTANT: The poster content MUST be wrapped in

for the export function to work.

Recommended Dimensions:

Use CaseWidthHeightAspect Ratio
---------------------------------------
Classic Poster (default)108016202:3
Instagram Post108010801:1
Social Media Story108019209:16
Desktop Banner1920108016:9

Style Templates Reference

Modern Style Example Structure

:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --accent: #f59e0b;
  --bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --text: #1f2937;
}

.poster {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Inter', system-ui, sans-serif;
}

Chinese Traditional Style Structure

.poster {
  background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%);
  background-image: url("data:image/svg+xml,..."); /* Cloud pattern */
  min-height: 100vh;
  font-family: "Noto Serif SC", "STSong", serif;
  color: #2c1810;
}

.ornament {
  /* Traditional Chinese decorative borders */
  border: 2px solid #8b0000;
  padding: 2rem;
  position: relative;
}

Typography Guidelines

Chinese Typography

  • Primary: "Noto Sans SC", "PingFang SC", "Microsoft YaHei"
  • Serif: "Noto Serif SC", "STSong", "SimSun"
  • Display: "ZCOOL XiaoWei", "Ma Shan Zheng"

English Typography

  • Sans-serif: Inter, Poppins, Montserrat, Roboto
  • Serif: Playfair Display, Merriweather, Lora
  • Display: Bebas Neue, Oswald, Anton

Color Psychology

StylePrimary ColorsMood
----------------------------
Modern#6366f1, #8b5cf6Innovative, Dynamic
Minimalist#000, #fff, #6b7280Clean, Professional
Retro#d97706, #92400e, #fef3c7Nostalgic, Warm
Chinese#8b0000, #ffd700, #000Traditional, Elegant
Tech#0ea5e9, #06b6d4, #0f172aFuturistic, Digital
Luxury#000, #d4af37, #fffPremium, Sophisticated
Nature#22c55e, #84cc16, #365314Organic, Fresh
Playful#f472b6, #fbbf24, #a78bfaFun, Energetic

Design Rules

CRITICAL: Typography Sizes (1080x1920 canvas)

  • Main Title: 150-220px, 900 weight, MUST be the dominant visual element
  • Subtitle: 70-100px, 900 weight
  • Section Titles: 28-36px, 700 weight
  • Body/Content: 24-30px, 700 weight (NOT 400/500 - too thin!)
  • Labels/Small: 18-22px minimum
  • ALL TEXT BOLD (700-900 weight) - posters need impact, not subtlety

CRITICAL: Content Density

  • ZERO tolerance for empty space. Every pixel must serve a purpose.
  • Minimum 7-8 content sections: Top banner, Title, Info bar, Highlights/Topics, Stats/Numbers, Speakers/Hosts, CTA, Footer
  • Use background fills: If content doesn't fill space, add subtle gradients, patterns, or decorative elements

Content Checklist (ALL of these should be included):

  • [ ] Top banner or badge (event type)
  • [ ] Giant title (150px+)
  • [ ] Subtitle (70px+)
  • [ ] Date badge or highlight
  • [ ] Location + time info bar
  • [ ] Key highlights or topics (4-6 items)
  • [ ] Stats/numbers (3-4 metrics)
  • [ ] Speakers or hosts
  • [ ] Large CTA button
  • [ ] Footer with website/org info

Spacing

  • Padding: 40-60px on sides, 30-50px between sections
  • NO large empty gaps. If space exists, fill it with content or subtle decorative elements.

Contrast

  • Ensure text readability (WCAG AA minimum)
  • Use contrast for emphasis
  • Consider color blindness accessibility

Responsive Design

Always include responsive breakpoints:

@media (max-width: 768px) {
  .poster {
    padding: 1rem;
  }
  .title {
    font-size: 2rem;
  }
}

Common Use Cases

  1. Event Poster: Conference, concert, exhibition
  2. Product Launch: New product announcement
  3. Sale/Promotion: Discount, limited offer
  4. Announcement: News, update, notification
  5. Social Media: Instagram post, WeChat share
  6. Business: Company profile, service intro
  7. Education: Course, workshop, training
  8. Festival: Holiday greetings, celebrations

Output Format

Final Deliverable

A self-contained HTML file with built-in export functionality. Users can:

  1. Open the HTML in any browser
  2. Click the "导出 PNG/JPG" button to download the image instantly
  3. No additional tools or manual screenshots needed

Workflow:

  1. Generate the HTML code with export button included
  2. Save HTML to the user's working directory
  3. Tell user: "海报已生成!用浏览器打开后点击底部按钮即可导出图片。"

Key Points:

  • HTML includes html2canvas library from CDN
  • Export button is hidden during capture (won't appear in exported image)
  • 2x scale for high-resolution output
  • User gets a complete, ready-to-use file

Tips for Excellence

  1. Content is King: A poster should INFORM. Include all relevant details - date, location, highlights, speakers, CTA
  2. Big & Bold: Titles need to grab attention. Use 80px+ for main titles. Make text IMPACTFUL.
  3. Fill the Canvas: 1080x1920 is a large canvas. Use it! No lazy whitespace. Every pixel should contribute.
  4. Visual flow: Guide the eye naturally through content (top to bottom, big to small)
  5. Consistency: Maintain style throughout
  6. Accessibility: Ensure readability for all users

Common Mistakes to AVOID

  • ❌ Title smaller than 150px
  • ❌ Any text using font-weight below 700
  • ❌ Empty space that could hold content
  • ❌ Fewer than 7 content sections
  • ❌ No clear call-to-action
  • ❌ Missing essential info (date, location)
  • ❌ Subtle/light colors when bold impact is needed

Bilingual Support

When creating bilingual posters:

  • Place primary language prominently
  • Secondary language can be smaller or in a different position
  • Use language-appropriate fonts
  • Consider cultural design elements
  • Maintain visual balance between languages

版本历史

共 1 个版本

  • v1.6.3 当前
    2026-03-30 21:08 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

design-media

UI/UX Pro Max

xobi667
提供 UI/UX 设计智能与实现指导,帮助打造精美界面。适用于 UI 设计、UX 流程、信息架构、视觉风格、设计系统/标记、组件规格、文案/微文案、无障碍及前端 UI(HTML/CSS/JS、React、Next.js、Vue、Svelte
★ 216 📥 46,885
design-media

Openai Whisper

steipete
使用 Whisper CLI 进行本地语音转文字(无需 API 密钥)
★ 330 📥 93,305
office-efficiency

Pptx Generator

tobewin
专业PPT生成器。Use when user wants to create editable PowerPoint presentations with professional layouts, multiple styles, and
★ 13 📥 14,420