
原文:CreativeDesignTools · GPT 5.6 Sol Builds an Awwwards-Level Website (Full Build) 日期:2026年7月20日 本教程基于 YouTube 完整复盘整理,附带提示词文件链接。
从多个网站汲取原则——动画类型、布局节奏、交互模式——然后将它们编织成原创风格。
"Every image must feature the same model with the same face. A woman with braided white hair. She wears a black techwear jacket with a red hard-shell armor piece on the left shoulder and an electric blue cord across the chest. Black tactical gloves. A textured pouch on the chest. Black cargo pants and matching tactical boots. No other outfit variations."
"Place the subject on a perfectly flat, even matte green background. The green must NOT appear anywhere on the garment or the subject. No floor, no shadow, no gradient — the entire background filled with this solid color."
"After cutting out the green background, confirm all four corners of the resulting PNG are fully transparent."
.hero-revealer { animation: heroEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0;}@keyframes heroEnter { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); }}// 伪代码示意 — ScrollTimeline API 或 GSAP ScrollTriggerconst scrub = gsap.timeline({ scrollTrigger: { trigger: '.hero', pin: true, start: 'top top', end: '+=150%', scrub: 1 }});scrub.to('.hero-image', { y: -120, scale: 1.05 }) .to('.hero-title', { x: 60, opacity: 0.8 }, 0) .to('.hero-bg', { y: -60 }, 0);.lookbook-track { display: flex; width: 400vw; /* 4 cards, each 100vw */ will-change: transform;}.lookbook-card { width: 100vw; height: 100vh; flex-shrink: 0;}const track = document.querySelector('.lookbook-track');const container = document.querySelector('.lookbook-container');container.addEventListener('scroll', () => { const progress = container.scrollTop / (container.scrollHeight - container.clientHeight); track.style.transform = `translateX(-${progress * 75}vw)`; // 4 cards - 1 viewport});card.addEventListener('mouseleave', () => { layers.forEach(layer => { layer.style.transition = 'transform 0.6s cubic-bezier(0.16, 1, 0.3, 1)'; layer.style.transform = 'translate(0, 0)'; });});card.addEventListener('mouseenter', () => { layers.forEach(layer => { layer.style.transition = 'none'; // 实时跟随鼠标,不需要过渡 });});@media (prefers-reduced-motion: reduce) { .hero-image, .lookbook-card, .parallax-layer { transform: none !important; animation: none !important; } .lookbook-track { transform: none !important; } .scroll-indicator { display: none; }}transform 动画在 prefers-reduced-motion: reduce 下复位animation 在 reduce 模式下被禁用资源 | 链接 |
|---|---|
免费模板(VOID/03) | |
在线 Demo | |
完整提示词文件 | |
Aura 模板工具 | |
Neuform |
原文视频:CreativeDesignTools · 2026年7月20日 本教程基于完整视频转录整理,保留了所有关键技术细节和 Prompt。