加载中…
创作者 · MotionSites
查看原始来源 ↗
Prompt
---
为一家名为 "EngineTech" 的航空航天公司构建一个 **Site Footer**。这是一个黑色背景的页脚,包含带动画的点状顶部边框、带有大标题的四列导航网格、超大字号的字标品牌行,以及法律声明行。
---
## ROOT CONTAINER (`.site-footer`)
- Position relative,z-index 100,overflow hidden。
- Background:`#000000`。Color:`#ffffff`。
---
## ANIMATED DOTS STRIP (`.footer-dots`)
页脚最顶部的装饰带,其中的圆点会水平漂移。
- Position relative,height 120px,overflow hidden,background `#000000`。
- 带有 `aria-hidden="true"`。
**内部 (`.footer-dots__line`):**
- Position absolute,`left: 0; top: 50%`。Width **200%**,height 70px。
- Opacity 0.75。`transform: translateY(-50%)`。
- Background-image(三层 radial-gradient 圆点图案):
- `radial-gradient(circle, rgb(255 255 255 / 0.55) 1.5px, transparent 2px)`
- `radial-gradient(circle, rgb(255 255 255 / 0.35) 1px, transparent 1.5px)`
- `radial-gradient(circle, rgb(255 255 255 / 0.45) 1.2px, transparent 1.8px)`
- Background-position:`0 8px, 24px 22px, 48px 14px`。
- Background-size:`72px 38px, 110px 44px, 160px 52px`。
- Animation:`footerDotsMove 18s linear infinite`。
**Keyframes:**
```
@keyframes footerDotsMove {
from { transform: translate3d(0, -50%, 0); }
to { transform: translate3d(-50%, -50%, 0); }
}
```
---
## FOOTER INNER (`.site-footer__inner`)
- Width:`min(100% - 96px, var(--hero-max-width))`,其中 `--hero-max-width: 1820px`。Margin `0 auto`。
- Padding:`clamp(34px, 4vw, 66px) 0 clamp(18px, 2vw, 34px)`。
---
## TOP GRID (`.site-footer__top`)
- Display grid。Columns:`minmax(320px, 1.25fr) repeat(3, minmax(150px, 0.42fr))`。
- Gap:`clamp(28px, 4vw, 76px)`。Min-height:`clamp(220px, 24vw, 330px)`。
### H2(第一个单元格)
- Text:"经过验证的先进推进技术"。
- Max-width 680px,margin 0,color `#ffffff`,`font-size: clamp(34px, 3.5vw, 62px)`,weight 220,letter-spacing 0,line-height 1.06。
### 导航列(三个 `.site-footer__nav` 元素)
每个导航均为 `display: flex; flex-direction: column; align-items: flex-start; gap: clamp(14px, 1.35vw, 22px)`。
每个链接 `<a>`:
- Color `rgb(255 255 255 / 0.88)`,font-size 16px,weight 650,line-height 1.1。
- Transition:`color 180ms ease, transform 180ms ease`。
- Hover:color `#ffffff`,`transform: translateX(3px)`。
**Nav 1 (`aria-label="Footer navigation"`):**
- 公司 → `#company`
- 技术 → `#technology`
- 解决方案 → `#solutions`
- 我们的优势 → `#our-edge`
- 投资者 → `#investors`
**Nav 2 (`aria-label="Company links"`):**
- 我们的团队 → `#our-team`
- 新闻 → `#news`
- 招聘 → `#careers`
- 联系我们 → `#contact`
**Nav 3 (`aria-label="Social links"`):**
- LinkedIn → `https://www.linkedin.com` (`target="_blank" rel="noreferrer"`)
- 在 X 上关注我们 → `https://x.com` (`target="_blank" rel="noreferrer"`)
---
## BRAND ROW (`.site-footer__brand-row`)
- Width 100%。Margin-top:`clamp(18px, 3vw, 46px)`。
**品牌链接 (`.site-footer__brand`):**
- Anchor `href="/"`,`aria-label="EngineTech home"`。
- Display flex,align-items center,width 100%,color `#ffffff`。
**品牌标志 (`.site-footer__mark`):**
- Position relative,`flex: 0 0 clamp(58px, 6.1vw, 118px)`,`aspect-ratio: 1`。
- Margin-right `clamp(14px, 1.6vw, 28px)`。Overflow hidden,border-radius 50%。
- Background `#ffffff`。
- `::before` 伪元素:absolute `inset: -18%`,background `#000000`,并使用 `clip-path: polygon(0 20%, 100% 8%, 100% 19%, 0 31%, 0 43%, 100% 31%, 100% 42%, 0 54%, 0 66%, 100% 54%, 100% 65%, 0 77%)`。这会在白色圆形内部创建锯齿波图案。
- 带有 `aria-hidden="true"`。
**品牌字标(第二个 `<span>`):**
- Text:"EngineTech"。
- Display block,`flex: 1 1 auto`,min-width 0。
- `font-size: clamp(58px, 11.1vw, 214px)`。Weight 760。`letter-spacing: -0.055em`。Line-height 0.78。
- `white-space: nowrap`。
---
## LEGAL LINE (`.site-footer__legal`)
- Flex row,允许换行,justify-content flex-start,gap `8px 18px`。
- Margin-top:`clamp(14px, 1.4vw, 24px)`。
- Color `rgb(255 255 255 / 0.52)`,font-size 9px,line-height 1.35。
内容:
- `<p>`:"© 2026 EngineTech。保留所有权利。"(margin 0)
- `<a href="#privacy">`:"隐私政策"(color inherit,hover `#ffffff`)
- `<a href="#terms">`:"使用条款"(样式相同)
---
## RESPONSIVE BREAKPOINTS
**在 980px 时:**
- `.site-footer__inner` width:`min(100% - 48px, var(--hero-max-width))`。
- 顶部网格:`grid-template-columns: 1fr 1fr`(两列)。
- H2 横跨整个宽度:`grid-column: 1 / -1`。
**在 560px 时:**
- `.site-footer__inner` width:`min(100% - 32px, var(--hero-max-width))`。
- 顶部网格:单列(`grid-template-columns: 1fr`)。Min-height auto。
- 导航链接 font-size 15px。
- 品牌标志 flex-basis:`clamp(38px, 12vw, 58px)`。
- 品牌字标 font-size:`clamp(45px, 18vw, 84px)`。
---
## GLOBAL STYLES
**使用的 CSS 自定义属性:** `--hero-max-width: 1820px`。
**字体栈:** `"Geist", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif`,并设置 `-webkit-font-smoothing: antialiased` 和 `text-rendering: geometricPrecision`。
**Anchor 重置:** `a { color: inherit; text-decoration: none; }`。
**配色方案:** 不使用紫色或紫罗兰色。使用纯黑色 `#000000` 背景、纯白色 `#ffffff` 文本,导航链接使用 `rgb(255 255 255 / 0.88)`,圆点图案使用 `rgb(255 255 255 / 0.55)` / `0.45` / `0.35`,法律文本使用 `rgb(255 255 255 / 0.52)`。适用模型与稳定度
建议模型
继续探索
@Oluwaphilemon1 使用 Claude Fable 5 · Three.js · Blender · GSAP完成的网页案例,包含公开结果、完整 Prompt 与原始来源。
提示语
Claude Fable 5 和 GPT-5.6 很强🥵🥵🥵 下面是我如何使用 Claude 构建的 👇 提示词:「设计一个机构网站,把服务以 3D 超市商品包装的形式呈现」 使用 Three.js 和 WebGL 在浏览器中实时渲染所有产品 使用 Blender 制作包装模型,然后导出为 GLTF 以加载到 Three.js 中 使用 GSAP 实现流畅的产品旋转和悬停交互 如果你想做一个让客户感觉像是在购买高级商品的作品集,请保存这条 🛒
复制这段 TSX 组件源码,交给 Cursor、v0、Claude 等 AI 编程工具,说明这是「3D Animated Pin」的 Aceternity UI 组件实现,即可让它接入你的 React 项目,再按需替换文案、配色与触发参数复用。
提示语
// components/ui/3d-pin.tsx "use client"; import React, { useState } from "react"; import { motion } from "motion/react"; import { cn } from "@/lib/utils"; export const PinContainer = ({ children, title, href, className, containerClassName…

提示语
首先搜索 "/unlazy" skill,完整阅读它,并在整个任务中持续使用。 将此视为一项至少持续 {argument name="minimum duration" default="5 小时"} 的大型视觉构建。如果环境允许,最好进行 {argument name="optimal duration" default="8–24 小时"} 有实质意义的实现和迭代。不要在制作出一个还不错的场景后就停下。 在浏览器中创建一个细节极其丰富的实时 {argument nam