跳到主要内容
MotionSites Prompt Atlas2026.07
从提示词全文提炼导航线索

MotionSitesPrompt Atlas

这里不只是把 prompt 堆成列表,而是把 177 条网页设计规格拆成 影像、玻璃、动效、排版、空间层次与产品系统。先看风格信号,再进入对应 prompt。

Prompt intelligence
177
Total
63
Free
114
Paid
Editorial Type
字体、排版、serif/italic、字距规范
171
Cinematic Video
背景视频、HLS/MP4、动态预览
146
Motion System
滚动、悬停、parallax、Framer/Motion
146
Liquid Glass
玻璃拟态、backdrop blur、液态边框
130
Product System
Dashboard、指标、图表、SaaS/DeFi
114
Spatial Depth
3D、WebGL、canvas、层次景深
92
Featured prompt anatomy

Layered Depth

Create a React + Vite + TypeScript + Tailwind CSS landing page for an architecture studio called "Qelora". The page has exactly two sections: a Hero and a Section 2. The entire site uses inline styles (no Tailwind utility classes in JSX -- Tailwind is only used for base reset). Use only `react`, `react-dom`, and `lucide-react` as dependencies (icons are all inline SVGs here, lucide is not actually used in this page). --- FONTS Load these three custom fonts in `index.html` `<head>`: ```html <link href="https://db.onlinewebfonts.com/c/076f8c5b3b67616658dd1e4e9bac62ec?family=Zimula+Trial+Med" rel="stylesheet"> <link href="https://db.onlinewebfonts.com/c/08d8ca53f66ab5b48659912fa0136b78?family=Zimula+Trial+Bd" rel="stylesheet"> ``` Also import in `index.css`: ```css @import url('https://db.onlinewebfonts.com/c/46024824a3dd3309c3a7f46f4f1283ba?family=Zimula+Trial+Reg'); ``` Font usage: - Body / default: `'Zimula Trial Med', sans-serif` - Bold / logo / hero text: `'Zimula Trial Bd', sans-serif` - The `Reg` import is available but Med is the primary weight used everywhere --- GLOBAL CSS (`index.css`) ```css @import url('https://db.onlinewebfonts.com/c/46024824a3dd3309c3a7f46f4f1283ba?family=Zimula+Trial+Reg'); @tailwind base; @tailwind components; @tailwind utilities; *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: 'Zimula Trial Med', sans-serif; background: #0e0c0a; overflow-x: hidden; } ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: #0e0c0a; } ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; } ``` --- COLOR PALETTE - Dark background: `#0e0c0a` - Primary text: `#241f21`, `#282425`, `#2a2420` - White: `#fff` - Dark accent: `#100e0c` - Warm transparent overlays: `rgba(235, 230, 218, 0.12)`, `rgba(242, 238, 230, 0.38)` - Frosted glass backgrounds: `rgba(248,245,240,0.72)`, `rgba(248,245,240,0.88)`, `rgba(248,245,240,0.92)`, `rgba(248,245,240,0.96)` --- ASSET URLs (Cloudinary, not CloudFront) Videos: - Background video (Hero): `https://res.cloudinary.com/dy5er7kv5/video/upload/q_auto/f_auto/v1779808200/bg-video_xsmysw.mp4` - Bird enter animation: `https://res.cloudinary.com/dy5er7kv5/video/upload/q_auto/v1779808206/bird-entrada_e72qt7.webm` - Bird idle 1: `https://res.cloudinary.com/dy5er7kv5/video/upload/q_auto/v1779808282/bird-idle_fzjami.webm` - Bird idle 2: `https://res.cloudinary.com/dy5er7kv5/video/upload/q_auto/v1779808284/bird-idle2_rajmgo.webm` - Bird leave animation: `https://res.cloudinary.com/dy5er7kv5/video/upload/q_auto/v1779808286/bird-saida_ifroz1.webm` - Background video (Section 2): `https://res.cloudinary.com/dy5er7kv5/video/upload/q_auto/f_auto/v1779835701/bg-2-video_sgbpqt.mp4` Images: - Q logo (unused but declared): `https://res.cloudinary.com/dy5er7kv5/image/upload/q_auto/f_auto/v1779808187/q-logo_isvugc.png` - Center sculpture/slab: `https://res.cloudinary.com/dy5er7kv5/image/upload/q_auto/f_auto/v1779854565/slab_v1_kb4vqk.png` - CTA card photo (Pexels): `https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=400` --- APP STRUCTURE ``` src/ main.tsx -> StrictMode, renders App.tsx -> then , no routing Hero.tsx -> Hero section component Section2.tsx -> Second section component index.css -> Global styles ``` --- SECTION 1: HERO (`Hero.tsx`) Container: `position: relative`, `width: 100%`, `minHeight: 100vh`, `overflow: visible`, `fontFamily: 'Zimula Trial Med', sans-serif`. Responsive breakpoint: `isMobile = window.innerWidth < 768`, checked on mount and resize. Layer 1 -- Background Video (z-index: 0) - `` with `autoPlay muted loop playsInline` - `position: absolute`, `inset: 0`, `width: 100%`, `height: 100vh`, `objectFit: cover` - Source: `BG_VIDEO` URL #### Layer 2 -- Warm Overlay (z-index: 1) - A div covering the hero with `background: rgba(235, 230, 218, 0.12)`, `height: 100vh`, `pointerEvents: none` #### Layer 3 -- Bird Animation System (z-index: 8) - Container: `position: absolute`, `top: 0`, `left: 0`, `width: 100%`, `height: 100vh`, `pointerEvents: none`, `aria-hidden` - Contains 4 `` elements (enter, idle1, idle2, leave), each toggled visible/hidden via `display` property - **Desktop:** Each video is `position: absolute`, `inset: 0`, `width: 100%`, `height: 100%`, `objectFit: cover` - **Mobile:** Each video is `position: absolute`, `top: 50%`, `left: 0`, `transform: translateY(-50%)`, `width: 100%`, `height: auto` (full width, auto height, vertically centered) - **State machine:** Type `'enter' | 'idle1' | 'idle2' | 'leave' | 'hidden'` - On page load: play `enter` video - When `enter` ends: transition to `idle1` - When `idle1` ends: transition to `idle2` - When `idle2` ends: transition back to `idle1` (infinite loop) - **On scroll down** (past 10px threshold): pause all idle/enter videos, reset their `currentTime` to 0, play `leave` video - **On scroll back to top** (below 10px): pause leave video, reset, play `enter` video again - Uses both React state and refs (`birdStateRef`) to avoid stale closures in scroll handlers - All videos are preloaded with `.load()` on mount - The `playVideo` helper sets `currentTime = 0`, checks `readyState >= 2`, then plays (or waits for `canplay` event) #### Layer 4 -- Center Brand Text "Qelora" (z-index: 5) - Absolutely positioned container filling `100vh`, `display: flex`, `alignItems: center`, `justifyContent: center`, `pointerEvents: none` - Text: `"Qelora"` in `'Zimula Trial Bd', sans-serif` - Font size: mobile `26vw`, desktop `22vw` - `letterSpacing: -0.05em`, `color: #241f21`, `lineHeight: 1` - `marginBottom`: mobile `8vh`, desktop `12vh` #### Layer 5 -- Sculpture Image (z-index: 5) - `` with `position: absolute`, `top: 50%`, `left: 50%` - `transform: translateX(-50%) translateY(${-heroScroll 0.3}px)` -- parallax that moves UP as user scrolls down - Width: mobile `220vw`, desktop `160vw`; `height: auto` - `pointerEvents: none`, `willChange: transform` #### Layer 6 -- Fixed Navbar (z-index: 100) - `position: fixed`, `top: 0`, full width - Padding: mobile `16px 20px`, desktop `20px 36px` - **Left:** Brand name "Qelora" with registered trademark superscript. Font: `'Zimula Trial Bd'`, size: mobile `20px`, desktop `24px`, `letterSpacing: -0.03em`, `color: #241f21`. The `(R)` sup has `fontSize: 0.4em`, `verticalAlign: super` - **Right (desktop):** `NavPills` component -- a row of pill buttons for `['Projects', 'Studio', 'Responsibility', 'Archive']` plus an `EN` language selector - Each pill: `background: rgba(248,245,240,0.92)`, `borderRadius: 12px`, `padding: 13px 22px 8px`, `height: 40px`, `fontSize: 13px`, `textTransform: uppercase`, `letterSpacing: 0.07em`, `color: #241f21` - Active pill has `fontWeight: 700` and a 3px round dot at `bottom: 3px`, centered - Non-active: `fontWeight: 500` - Language pill: separate rounded capsule (`borderRadius: 100px`), `padding: 8px 14px`, `background: rgba(248,245,240,0.88)`, `backdropFilter: blur(12px)`, `boxShadow: 0 2px 20px rgba(0,0,0,0.1)`, contains "EN" text and a chevron-down SVG - **Right (mobile):** Hamburger button, `42x42px`, `borderRadius: 100px`, same frosted glass style. Shows X icon when open, 3-line hamburger when closed #### Layer 7 -- Mobile Dropdown Menu (z-index: 99) - `position: fixed`, `top: 70px`, `left: 16px`, `right: 16px` - `background: rgba(248,245,240,0.96)`, `backdropFilter: blur(16px)`, `borderRadius: 18px`, `padding: 8px`, `boxShadow: 0 8px 40px rgba(0,0,0,0.14)` - Each menu item: full-width button, `padding: 14px 20px`, `fontSize: 13px`, uppercase, `letterSpacing: 0.07em`, `borderBottom: 1px solid rgba(40,36,37,0.08)` - Bottom: EN language selector row #### Layer 8 -- Bottom Panels (z-index: 20) - `bottom` is calculated as: `bottomOffset + heroScroll 0.5` where `bottomOffset` is 24px on mobile, 36px on desktop. This creates a parallax push-down effect as user scrolls. **Desktop layout (side-by-side):** - **Bottom-left panel:** `position: absolute`, `left: 36px`, `borderRadius: 18px`, `padding: 22px 28px`, `maxWidth: 270px` - Headline: `"Designing places\nbeyond\nwhat's expected"` -- `fontSize: clamp(17px, 2vw, 24px)`, `lineHeight: 1.28`, `color: #282425`, `letterSpacing: -0.01em` - Below: 1px border-top divider (`rgba(40,36,37,0.2)`), then "EXPLORE OUR APPROACH" link with down-arrow SVG. `fontSize: 11px`, uppercase, `letterSpacing: 0.1em` - **Bottom-right panel:** `position: absolute`, `right: 36px`, `borderRadius: 18px`, `width: clamp(210px, 21vw, 290px)`, `height: 180px`, `overflow: hidden` - Background: Pexels photo covering the entire card - Dark gradient overlay: `linear-gradient(to bottom, rgba(16,14,12,0.55) 0%, transparent 60%)` - Top text: `"Every lasting space begins\nwith a quiet dialogue."` -- `color: #fff`, `fontSize: 13px`, `lineHeight: 1.35` - Bottom: inline flex with a white circle (envelope SVG icon, 36x36px, `borderRadius: 12px`) and a white "START A PROJECT" button (`fontSize: 11px`, uppercase, `letterSpacing: 0.07em`, `fontWeight: 700`, `borderRadius: 12px`, `height: 36px`) **Mobile layout (stacked):** - Single flex column container, `left: 20px`, `right: 20px`, `gap: 12px` - **Top card:** Tagline panel with `background: rgba(248,245,240,0.72)`, `backdropFilter: blur(8px)`, `borderRadius: 16px`, `padding: 18px 20px`. Same text as desktop but single line: "Designing places beyond what's expected", `fontSize: 17px`. Same divider + "Explore our approach" link below. - **Bottom card:** CTA card, `borderRadius: 16px`, `height: 120px`. Same structure as desktop right panel but adapted for mobile (text `fontSize: 12px`, same button row). --- ### SECTION 2 (`Section2.tsx`) **Container:** `position: relative`, `width: 100%`, `minHeight: 100vh`, `display: flex`, `flexDirection: column`, `alignItems: center`, `justifyContent: center`, `overflow: hidden`, `fontFamily: 'Zimula Trial Med', sans-serif` #### Layer 1 -- Background Video (z-index: 0) - `` with `autoPlay muted loop playsInline`, `position: absolute`, `inset: 0`, `width: 100%`, `height: 100%`, `objectFit: cover` - Source: `BG_VIDEO_2` URL #### Layer 2 -- Warm Overlay (z-index: 1) - `background: rgba(242, 238, 230, 0.38)`, `position: absolute`, `inset: 0`, `pointerEvents: none` #### Layer 3 -- Center Headline (z-index: 2) - Absolutely positioned, `inset: 0`, flex centered, `pointerEvents: none`, `textAlign: center`, `padding: 0 24px` - Text: `"What stands the\ntest of time is all\nthat guides the\nwork."` using ` ` tags - `fontSize: clamp(32px, 5.5vw, 80px)`, `lineHeight: 1.18`, `color: #2a2420`, `maxWidth: 780px`, `letterSpacing: -0.025em`, `fontWeight: 400` #### Layer 4 -- Bottom Element (z-index: 2) - `position: absolute`, `bottom: clamp(24px, 4vh, 48px)`, full width, flex column centered, `padding: 0 24px` - **Vertical line:** `width: 1px`, `height: 56px`, `background: rgba(42,36,32,0.25)` - **Below (margin-top: 22px):** flex column centered, `gap: 14px` - **Map pin SVG:** 24x28px outline pin icon, `stroke: #2a2420`, `strokeWidth: 1.4` - **Subtext:** `"Civic bodies and private clients trust us to shape resilient communities and purposeful places."` -- `fontSize: clamp(11px, 1.4vw, 13px)`, `color: #2a2420`, `letterSpacing: 0.04em`, `lineHeight: 1.6`, `maxWidth: 340px`, `opacity: 0.75` --- ### KEY BEHAVIORS SUMMARY 1. **Bird animation state machine:** enter -> idle1 <-> idle2 loop; scroll triggers leave; scroll back triggers re-enter 2. **Parallax effects:** Sculpture image moves up with `translateY(-scrollY 0.3)`. Bottom panels push down with `bottom = offset + scrollY 0.5` 3. Responsive at 768px breakpoint: Nav collapses to hamburger, panels stack vertically, bird videos switch from cover-fill to width-100%/height-auto/vertically-centered, sculpture grows from 160vw to 220vw, brand text grows from 22vw to 26vw 4. All styling is inline -- no CSS classes in JSX, no Tailwind utility classes on elements 5. No third-party animation libraries -- all animations are native video playback + scroll-driven inline style changes via React state

TypeVideoMotionGlassDepth
打开这条 prompt

Curation index

让导航先回答“这条 prompt 擅长什么”。

每张卡片会基于 prompt 全文标出核心设计能力;这些信号也进入搜索和筛选前的认知入口, 让用户更容易发现高价值素材,而不是盲翻标题。

Type

Editorial Type

171

字体、排版、serif/italic、字距规范

Video

Cinematic Video

146

背景视频、HLS/MP4、动态预览

Motion

Motion System

146

滚动、悬停、parallax、Framer/Motion

Glass

Liquid Glass

130

玻璃拟态、backdrop blur、液态边框

System

Product System

114

Dashboard、指标、图表、SaaS/DeFi

Depth

Spatial Depth

92

3D、WebGL、canvas、层次景深

全部素材

177 个结果

LLANDING PAGE
已付费

Layered Depth

TypeVideoMotion
Landing Pagehero
EHERO
已付费

EMBER.dsgn

TypeVideoGlass
Herohero
FCTA
免费

FAQ CTA

TypeMotionDepth
CTActa
LLANDING PAGE
已付费

Liquid Glass Agency

GlassTypeVideo
Landing Pagehero
GSAAS
已付费

Grow AI Talent Platform

GlassTypeVideo
SaaShero
GAGENCY
已付费

Glassmorphism Agency Hero

VideoMotionGlass
Agencyhero
RHERO
免费

Retro-Futurist

TypeVideoGlass
Herohero
NLANDING PAGE
已付费

NeoVision

VideoTypeGlass
Landing Pagehero
GLANDING PAGE
已付费

Guardnet

TypeVideoGlass
Landing Pagehero
NLANDING PAGE
已付费

Nike Premium Landing

TypeMotionVideo
Landing Pagehero
RLANDING PAGE
已付费

RIVR DeFi

VideoMotionGlass
Landing Pagehero
VAGENCY
免费

Velorah

GlassTypeMotion
Agencyhero
CHERO
免费

Celestia

Video
Herohero
CLANDING PAGE
免费

CodeNest Coding Platform

GlassTypeVideo
Landing Pagehero
SHERO
已付费

Slam Dunk

Prompt
Herohero
BHERO
免费

Bloom AI

GlassTypeVideo
Herohero
LFOOTER
免费

Lumina

GlassTypeMotion
Footerfooter
ULANDING PAGE
免费

USD Halo

TypeVideoGlass
Landing Pagehero
ALANDING PAGE
已付费

AI Automation

TypeVideoMotion
Landing Pagehero
THERO
免费

Taskly

GlassVideoType
Herohero
DSAAS
免费

Datacore Booking

TypeVideoGlass
SaaShero
NSAAS
免费

Neuralyn

TypeGlassMotion
SaaShero
DSAAS
免费

Digitwist AI Builder

VideoMotionType
SaaShero
DHERO
免费

Duolingo Styleguide

TypeDepthMotion
Herohero
PSAAS
免费

Price Calculator

TypeSystem
SaaSpricing
HFOOTER
免费

HAUL!

MotionTypeGlass
Footerfooter
VHERO
免费

VaultShield

TypeMotionVideo
Herohero
VHERO
已付费

Velorix IIC

TypeVideoGlass
Herohero
NAUTH
免费

No-Code Waitlist

TypeGlassVideo
Authhero
3PORTFOLIO
免费

3D Jack Portfolio

MotionTypeDepth
Portfoliohero
WWEB3
已付费

Web3 EOS Hero

TypeVideoGlass
Web3hero
BSAAS
已付费

BookedUp

MotionTypeGlass
SaaShero
CSAAS
已付费

ClearInvoice SaaS Hero

VideoMotionGlass
SaaShero
LHERO
已付费

Learnly

TypeMotionSystem
Herohero
WHERO
已付费

WISA Space

Prompt
Herohero
VHERO
免费

Visual Hero

TypeGlassVideo
Herohero
ALANDING PAGE
已付费

Acreage Farming

Video
Landing Pagehero
XHERO
已付费

xPortfolio Hero

TypeVideoMotion
Herohero
EHERO
已付费

EcoVolta

MotionGlassType
Herohero
EHERO
已付费

EVR Ventures

TypeMotionVideo
Herohero
MLANDING PAGE
免费

Mythic Naturecore

MotionTypeGlass
Landing Pagehero
AHERO
免费

AI Workflow Hero

VideoTypeDepth
Herohero
IPRESENTATION
已付费

Investor Deck

VideoTypeMotion
Presentationhero
PHERO
已付费

Prioritize

MotionTypeDepth
Herohero
NHERO
已付费

Nexus IT Solutions

TypeVideo
Herohero
ALANDING PAGE
已付费

Art Landing

TypeVideoMotion
Landing Pagehero
ZFOOTER
已付费

Zenith Footer

TypeMotionVideo
Footerfooter
LECOMMERCE
已付费

Luxury Ecommerce Design

MotionVideoType
Ecommercehero
VHERO
免费

VEX Ventures

GlassTypeVideo
Herohero
SSAAS
免费

Securify Data Security

TypeVideoSystem
SaaShero
SHERO
已付费

Shamoni

MotionTypeVideo
Herohero
FHERO
已付费

Futuristic Tech

GlassTypeVideo
Herohero
AHERO
免费

Aethera Studio

TypeMotionVideo
Herohero
AHERO
免费

Aetheris Voyage

GlassTypeMotion
Herohero
PHERO
免费

Portal

GlassTypeMotion
Herohero
PHERO
免费

Power AI

GlassTypeVideo
Herohero
DHERO
免费

DesignPro Academy

MotionTypeVideo
Herohero
SHERO
免费

Stellar AI

TypeMotionVideo
Herohero
SSAAS
免费

SAAS Software

TypeVideoSystem
SaaShero
EOTHER
免费

Email Marketing

TypeVideoMotion
Otherhero
DHERO
免费

Digital Epoch

MotionTypeVideo
Herohero
VFOOTER
免费

Vize Footer

GlassTypeMotion
Footerfooter
BHERO
已付费

Book Hero

Prompt
Herohero
ASAAS
已付费

AuraMail

MotionTypeVideo
SaaShero
ELANDING PAGE
免费

Email Landing Page

TypeGlassMotion
Landing Pagelanding
DSAAS
已付费

Dashboard UI

GlassVideoSystem
SaaSdashboard
CLANDING PAGE
已付费

Cinematic Landing Page

MotionTypeGlass
Landing Pagehero
RHERO
已付费

Reveal Hero

TypeDepthGlass
Herohero
MAGENCY
免费

Modern Agency

TypeGlassVideo
Agencyhero
IHERO
已付费

Impressive Hero

GlassTypeVideo
Herohero
CHERO
已付费

Crypto Wealth

MotionTypeVideo
Herohero
NLANDING PAGE
已付费

NexaCore

VideoTypeGlass
Landing Pagehero
BPORTFOLIO
已付费

Bold Portfolio Hero

TypeGlassDepth
Portfoliohero
SSAAS
已付费

Slate

GlassTypeMotion
SaaShero
EHERO
已付费

EcoVolta V2

VideoType
Herohero
DSOCIAL
已付费

Digital Reality

TypeVideoGlass
Socialsocial-media
CCTA
已付费

Community CTA

VideoTypeMotion
CTActa
WPRICING
已付费

What Package Fits You

MotionTypeSystem
Pricinghero
DHERO
免费

Dot

TypeMotionVideo
Herohero
GFEATURES
免费

Glow Features

MotionTypeDepth
Featuresfeatures
KFOOTER
免费

Kresna Footer

TypeVideoMotion
Footerfooter
MSAAS
已付费

Minimal Workflow SaaS

MotionTypeGlass
SaaShero
AAUTH
免费

Aurora Onboard

TypeVideoMotion
Authhero
MFEATURES
免费

Max Reed Portfolio

GlassMotionVideo
Featuresfeatures
DECOMMERCE
已付费

Daisy Shop

VideoTypeMotion
Ecommercehero
CSAAS
已付费

CoderCrest

VideoTypeDepth
SaaShero
ASAAS
已付费

AI Automation Hero

VideoGlassMotion
SaaShero
SSAAS
已付费

Synapse Dark Hero

VideoMotionGlass
SaaShero
NLANDING PAGE
已付费

Nimbus Grid

GlassMotionType
Landing Pagehero
HSAAS
已付费

HR SaaS Hero

VideoTypeMotion
SaaShero
FHERO
已付费

Futuristic Cinematic

GlassTypeDepth
Herohero
CAGENCY
免费

Creative Studio

TypeMotionDepth
Agencyhero
CHERO
已付费

Cursor Follow

TypeVideoGlass
Herohero
ASAAS
免费

AI Image Generator UI

TypeGlassDepth
SaaShero
SHERO
已付费

SpeakUp Venture Hero

TypeVideoMotion
Herohero
NAUTH
已付费

NovaDesk Signup

TypeVideoMotion
Authhero
EHERO
免费

Equilibrium

GlassTypeVideo
Herohero
PLANDING PAGE
免费

Prisma Creative Studio

TypeMotionVideo
Landing Pagehero
BOTHER
免费

Blog Showcase

VideoTypeSystem
OtherBlog
EWEB3
已付费

Evergreen Finance

TypeMotionVideo
Web3hero
MSAAS
已付费

Modern HR Dashboard

TypeSystemGlass
SaaShero
SLANDING PAGE
已付费

Space Voyage

GlassTypeVideo
Landing Pagehero
OAGENCY
已付费

Orbit Engineers

TypeMotionVideo
Agencyhero
PPRESENTATION
已付费

Pro AI Deck

TypeVideoGlass
Presentationhero
RHERO
已付费

Railroad.ai

GlassTypeMotion
Herohero
KFEATURES
已付费

Keep Ahead Features

TypeDepthMotion
Featuresfeatures
BFEATURES
已付费

Benefits Features

TypeMotionVideo
Featuresfeatures
SHERO
免费

Sentinel AI

DepthTypeMotion
Herohero
NFEATURES
已付费

Nexora Features

GlassVideoType
Featuresfeatures
SHERO
已付费

Sync AI

MotionGlassType
Herohero
ALANDING PAGE
已付费

AI Designer Agency

TypeGlassMotion
Landing Pagehero
SPRICING
已付费

SaaS Pricing Flow

VideoMotionGlass
Pricinghero
PHERO
免费

Prosthetics Hero

TypeVideoMotion
Herohero
OLANDING PAGE
免费

Orbis NFT

GlassVideoType
Landing Pagehero
CLANDING PAGE
已付费

Creative Agency

TypeVideoGlass
Landing Pagehero
AHERO
已付费

Automation Machines

TypeMotionDepth
Herohero
SSOCIAL
已付费

Social Media Posts

TypeVideoMotion
Socialsocial-media
TSAAS
已付费

Terra Geo Map

TypeVideoDepth
SaaShero
FSAAS
已付费

Finlytic AI Agent

TypeVideoGlass
SaaShero
PSAAS
已付费

Planet Orbit

GlassTypeVideo
SaaShero
TSAAS
已付费

Taskora SaaS Hero

SystemTypeGlass
SaaShero
NOTHER
免费

Nexto 404

TypeMotionSystem
Otherhero
NHERO
已付费

Nexar

TypeSystemVideo
Herodashboard
PPORTFOLIO
免费

Portfolio Cosmic

MotionTypeVideo
Portfoliohero
ALANDING PAGE
免费

AI Designer Portfolio

MotionTypeSystem
Landing Pagehero
THERO
免费

Transform Data

VideoTypeMotion
Herohero
ULANDING PAGE
已付费

Urban Jungle

TypeMotionVideo
Landing Pagehero
SLANDING PAGE
已付费

Stellar Launch

TypeVideoMotion
Landing Pagehero
AHERO
免费

Asme

GlassTypeVideo
Herohero
NLANDING PAGE
免费

Neo Museum

TypeMotionVideo
Landing Pagehero
BAGENCY
已付费

Buzzentic Agency

TypeVideoGlass
Agencyhero
LHERO
已付费

Loader Animation

MotionTypeDepth
Herohero
DLANDING PAGE
已付费

Dreamcore Landing

MotionTypeGlass
Landing Pagehero
FLANDING PAGE
已付费

Focus AI

TypeVideoGlass
Landing Pagehero
VLANDING PAGE
已付费

Veloce Finance

TypeMotionVideo
Landing Pagehero
VLANDING PAGE
已付费

Vitara

MotionTypeVideo
Landing Pagehero
BSAAS
已付费

Bionova Biotech

VideoTypeMotion
SaaShero
VPORTFOLIO
已付费

Viktor Portfolio

TypeVideoMotion
Portfoliohero
SLANDING PAGE
免费

SkyElite Private Jets

TypeVideoGlass
Landing Pagehero
NLANDING PAGE
已付费

NOVA Space Systems

TypeVideoMotion
Landing Pagehero
ZLANDING PAGE
已付费

Zenith Realty

TypeMotionSystem
Landing Pagehero
NPRICING
已付费

Nex Max Upgrade

TypeVideoMotion
Pricingpricing
SLANDING PAGE
已付费

Scenic Travel

VideoMotionType
Landing Pagehero
SHERO
已付费

Solar Energy Hero

TypeGlassMotion
Herohero
SHERO
已付费

Scroll Landing Page

MotionVideoGlass
Herohero
FLANDING PAGE
已付费

FlowMate

MotionTypeVideo
Landing Pagehero
3HERO
免费

3D Collectible Hero

TypeDepthGlass
Hero3D Website
MSAAS
已付费

Mindloop

GlassMotionType
SaaShero
OWEB3
已付费

Orbit Web3

TypeVideoGlass
Web3hero
WWEB3
已付费

Wealth Video Hero

VideoGlassType
Web3hero
ASAAS
已付费

Apex SaaS

GlassTypeVideo
SaaShero
ILANDING PAGE
免费

Innovation

GlassTypeVideo
Landing Pagehero
TSAAS
已付费

Targo Logistics Hero

GlassTypeVideo
SaaShero
LAGENCY
已付费

Logoisum Video Agency

VideoType
Agencyhero
WLANDING PAGE
免费

Wanderful Hero

TypeGlassMotion
Landing Pagehero
YLANDING PAGE
已付费

Yacht Club

MotionTypeGlass
Landing Pagehero
ELANDING PAGE
已付费

E-commerce Website

TypeMotionDepth
Landing Pagehero
CLANDING PAGE
已付费

ClubX Investors

MotionTypeGlass
Landing Pagehero
ALANDING PAGE
已付费

AKOR Security

TypeVideoMotion
Landing Pagehero
FAGENCY
已付费

Framelix 3D Studios

MotionVideoDepth
Agencyhero
DPORTFOLIO
已付费

Dark Portfolio Hero

TypeMotionVideo
Portfoliohero
VHERO
已付费

VertexAI Hero

TypeGlassVideo
Herohero
CHERO
免费

Cybersecurity Hero

TypeMotionDepth
Herohero
CHERO
已付费

Cybersecurity Hero v2

TypeMotionSystem
Herohero
WHERO
已付费

Waitlist Hero

VideoTypeDepth
Herohero
GHERO
已付费

Growth Marketing SaaS

MotionGlassType
Herohero
MLANDING PAGE
免费

Mindloop Landing

TypeVideoGlass
Landing Pagehero
RHERO
免费

RIVR

TypeMotionGlass
Herohero
LHERO
免费

Luminex

VideoGlass
Herohero
NHERO
已付费

Naturecore SaaS

VideoMotionType
Herohero
NAGENCY
已付费

New Era Bold Hero

VideoTypeDepth
Agencyhero
VSOCIAL
已付费

Velorah Focus

TypeGlassMotion
Socialsocial-media
WLANDING PAGE
已付费

Weblex Dark Hero

VideoTypeGlass
Landing Pagehero
NLANDING PAGE
已付费

New Era Automotive Hero

VideoType
Landing Pagehero
NSAAS
已付费

Nickel Payments

TypeVideoSystem
SaaShero
DSAAS
已付费

Datacore SaaS Hero

VideoTypeSystem
SaaShero
NSAAS
免费

Nexora Automation

TypeMotionSystem
SaaShero

这是什么

MotionSites 导航把 177 条网页设计 prompt 收进一个画廊里, 并从 prompt 内容中提炼设计信号、资源类型和视觉方向。

看到喜欢的,点开复制完整 prompt,粘进 Cursor、v0 或任意支持代码生成的 AI 工具,就能得到同款设计的起点。数据源自 MotionSites,仅供学习参考。