返回顶部
c

clip-path-generate

Generate CSS clip-path code for shapes. Use when the user asks to create a clip path, clip an element to a shape, generate clip-path CSS, or make a polygon, circle, ellipse, or inset clip.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
98
下载量
0
收藏
概述
安装方式
版本历史

clip-path-generate

# CSS Clip-Path Generator Generate `clip-path` CSS values for circle, ellipse, polygon, and inset shapes, with optional `-webkit-` vendor prefix. ## Input - Shape type: `circle` | `ellipse` | `polygon` | `inset` (default `circle`) - Shape-specific parameters: - **circle**: `radius` % (default 50), `cx` % (default 50), `cy` % (default 50) - **ellipse**: `rx` % (default 50), `ry` % (default 35), `cx` % (default 50), `cy` % (default 50) - **inset**: `top` %, `right` %, `bottom` %, `left` % (default all 10) - **polygon**: list of `x% y%` point pairs (at least 3 points) - Vendor prefix: boolean (default `false`) ## Output - `clip-path: <value>;` - Optionally `-webkit-clip-path: <value>;` if vendor prefix requested ## Instructions 1. Parse the user's request for shape type and parameters. 2. Build the clip-path value: - **circle**: `circle(<radius>% at <cx>% <cy>%)` - **ellipse**: `ellipse(<rx>% <ry>% at <cx>% <cy>%)` - **inset**: `inset(<top>% <right>% <bottom>% <left>%)` - **polygon**: `polygon(<x1>% <y1>%, <x2>% <y2>%, ...)` — join all points with `, ` 3. If the user mentions a named preset shape, map to its polygon points: - **Triangle**: `polygon(50% 10%, 90% 90%, 10% 90%)` - **Pentagon**: `polygon(50% 5%, 95% 35%, 80% 90%, 20% 90%, 5% 35%)` - **Hexagon**: `polygon(50% 5%, 90% 25%, 90% 75%, 50% 95%, 10% 75%, 10% 25%)` - **Star**: `polygon(50% 5%, 61% 35%, 95% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 5% 35%, 39% 35%)` - **Arrow**: `polygon(5% 35%, 60% 35%, 60% 10%, 95% 50%, 60% 90%, 60% 65%, 5% 65%)` 4. Output `clip-path: <value>;` 5. If vendor prefix requested, also output `-webkit-clip-path: <value>;` above the standard property. 6. Include a short usage example showing the property applied to a `.element` class. ## Options - `shape`: `circle` | `ellipse` | `polygon` | `inset` — default `circle` - `radius`: 0–50 — default `50` (circle only) - `cx`: 0–100 — default `50` - `cy`: 0–100 — default `50` - `rx`: 0–50 — default `50` (ellipse only) - `ry`: 0–50 — default `35` (ellipse only) - `top` / `right` / `bottom` / `left`: 0–50 — default `10` (inset only) - `vendorPrefix`: true | false — default `false` ## Examples **Input:** "Circle clip path, 40% radius, centered" **Output:** ```css clip-path: circle(40% at 50% 50%); ``` **Input:** "Triangle clip path" **Output:** ```css clip-path: polygon(50% 10%, 90% 90%, 10% 90%); ``` **Input:** "Ellipse clip, 60% wide 40% tall, centered, with webkit prefix" **Output:** ```css -webkit-clip-path: ellipse(60% 40% at 50% 50%); clip-path: ellipse(60% 40% at 50% 50%); ``` **Input:** "Inset rectangle 15% margin all sides" **Output:** ```css clip-path: inset(15% 15% 15% 15%); ``` ## Error Handling - If polygon has fewer than 3 points, inform the user and ask for at least 3 coordinate pairs. - If any percentage is outside 0–100, clamp it and note the adjustment. - If shape type is unrecognized, default to `circle` and notify the user. - For Safari compatibility, remind the user to add the `-webkit-clip-path` vendor prefix (or set vendorPrefix to true).

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 clip-path-generate-1776083222 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 clip-path-generate-1776083222 技能

通过命令行安装

skillhub install clip-path-generate-1776083222

下载 Zip 包

⬇ 下载 clip-path-generate v1.0.0

文件大小: 1.92 KB | 发布时间: 2026-4-14 14:38

v1.0.0 最新 2026-4-14 14:38
Initial release of clip-path-generate: generates CSS clip-path code for custom and preset shapes.

- Supports generating clip-path for circle, ellipse, inset, and polygon shapes.
- Recognizes named preset shapes: triangle, pentagon, hexagon, star, and arrow.
- Allows custom percentage parameters for precise shape positioning and sizing.
- Optionally adds -webkit-clip-path vendor prefix for compatibility.
- Provides clear error messages for invalid shapes or parameters.
- Includes CSS usage examples for easy implementation.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部