
Oversized Cursor
FreeEnhance video engagement with a dynamic oversized cursor.
Free · Opens the source repo
What Oversized Cursor does
The Oversized Cursor skill provides a method for integrating a prominent macOS-style cursor into video productions, specifically designed for use in HyperFrames launch videos. This technique is aimed at creating visual interest and guiding viewer attention through scenes that might otherwise feel static or disengaging. By utilizing a larger cursor, the skill ensures that the pointer remains visible and impactful, effectively serving as a protagonist that leads the viewer's eye to points of interest, igniting transitions, and enhancing the overall narrative flow of the video.
The skill emphasizes a set of design principles that dictate the size, entry, movement, and exit of the cursor. It prescribes a specific size for the cursor, ensuring it is always large enough to be seen clearly on screen. The cursor enters from off-screen, gliding smoothly to its target, which helps maintain viewer engagement. Additionally, the click action is designed to trigger subsequent animations or transitions, making the cursor an integral part of the video storytelling process.
For designers and developers working on video content, this skill offers a straightforward way to implement cursor animations that enhance the viewer experience. It provides clear guidelines on how to implement the cursor's movement and interaction, ensuring consistency across scenes. The use of brand-specific cursor motifs is also encouraged, allowing for a personalized touch that can reinforce brand identity in the video content.
Overall, the Oversized Cursor skill is a practical tool for anyone involved in video production who seeks to improve viewer engagement through dynamic visual elements. It provides a structured approach to cursor animation that can be easily integrated into various video projects, making it a valuable addition for those looking to elevate their launch videos.
When to use it
Use this skill when creating launch videos or any UI-focused animations that require guiding the viewer's attention effectively.
When not to use it
This skill may not be suitable for videos that do not involve UI elements or require a more subtle visual approach without prominent cursor movements.
What you can build with it
Launch Video Production
Incorporate the oversized cursor to lead viewers through key UI elements during a product launch video.
UI Animation Sequences
Use the cursor to create dynamic transitions between different UI states, enhancing the storytelling of the animation.
Brand-Centric Video Content
Utilize a custom cursor design that reflects your brand identity, making the video more relatable and engaging.
How to install Oversized Cursor
View source1. Install with the skills CLI
npx skills add heygen-com/hyperframes/oversized-cursor --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by heygen-comOversized Cursor — the eye-carrier
A deliberately oversized macOS-style pointer that travels the frame as a visible protagonist: it enters from off-screen, walks the viewer's eye to the next point of interest, clicks to cause the next thing that happens, and leaves. Production-proven across multiple launch films.
Why it exists. Big cursor movement is one of the cheapest high-yield motion sources in a launch video: one element, transform-only tweens, and it (1) brings the eye across the screen on scenes that would otherwise read as dead, (2) gives causal ignition to morphs/transitions ("the click did that"), and (3) segments the eye out of a stale state when kicking off a new scene or a complex animation sequence. Bigger is better — an actual-size cursor disappears at video scale.
Size & look (house convention)
- Full-frame scenes:
7cqw(≈134px at 1920). In-mock / small-frame variants:4.6–5.5cqw. Never smaller. - One SVG arrow geometry everywhere. Two proven fills — white body + black stroke, or
black body (
#1c1c1c) + white stroke (1.4px). Pick per scene contrast, keep it constant per film. - Brand-motif cursors (the power play). The macOS arrow is the DEFAULT, not a mandate. When the subject brand has a recognizable cursor identity — a collaborative design tool's colored multiplayer arrow with a name tag (Figma-style), a creative suite's precision crosshair, a distinctive product pointer — use THAT cursor instead: instantly legible brand language for anyone who knows the product. Same laws apply unchanged (oversized scale, physical entry/exit, tip-targeting, click-ignition), and a name-tag variant travels as one rigid unit (tag trailing the arrow). Reach for it only when the motif is genuinely referenceable; a cursor nobody recognizes is just a weird arrow — default back to macOS.
filter: drop-shadow(0 4px 6px rgba(0,0,0,.3)),pointer-events: none,z-indexabove all scene content,will-change: transform.
#root .cursor {
position: absolute;
left: 48%;
top: 115%; /* off-screen below — the resting pose IS off-screen */
width: 7cqw;
height: 7cqw;
z-index: 20;
filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
pointer-events: none;
will-change: transform;
}
Entry law — physical, never revealed
The cursor always enters from off-screen (canonical: from below, top:115–120%)
and travels to its first target in one decelerating glide. It must feel like it
entered the room. Never opacity-fade it in at a resting position, never mask-reveal
it — that reads as a glitch (a real, repeatedly observed failure mode).
- Default path: straight up the y-axis to the target — no fragmented diagonals. A diagonal is fine when it IS the story (entering toward an off-axis target), but it is one continuous vector either way.
duration: 0.4–0.92s,ease: power3.out,immediateRender: falseon the fromTo.
tl.fromTo(
cursor,
{ left: "48.6%", top: "115%" },
{ left: "48.6%", top: "55%", duration: 0.85, ease: "power3.out", immediateRender: false },
0.25,
);
Tip-targeting & the click tap
The hot-spot is the arrow TIP, not the box center. Land the tip on the target's
center, and pivot all press scaling on the tip: transformOrigin: '21% 14%' (for the
house arrow path in a 24-unit viewBox).
Click = asymmetric compress/expand (1:2 ratio reads as a real tap):
tl.to(cursor, { scale: 0.84, duration: 0.1, ease: "power2.in", transformOrigin: "21% 14%" }, t);
tl.to(
cursor,
{ scale: 1, duration: 0.22, ease: "power2.out", transformOrigin: "21% 14%" },
t + 0.1,
);
The target's reaction is a separate, parallel tween (button: scale: 0.94 + press
color/shadow, starting at the same t). Cursor-only taps (e.g. focusing a text input)
get NO target reaction. Pair with cursor-click-ripple / press-release-spring for
the target side.
The click IGNITES the next beat
Never let a morph, typing run, window transform, or scene-defining animation simply start. Park the cursor on the trigger and let the click cause it, same-frame:
- click ▸ menu/submenu cascade, toggle flip
- click ▸ typing kickoff into an input
- click ▸ composer morph-down / window shrink
- click ▸ logo ignition / flight launch
- click ▸ play-state flip + UI-life wake in a product mock
During long beats it doesn't own (typing, narration), the cursor drifts aside
(0.5–0.9s, power2.out) — never sits frozen on top of the action, never wobbles idly.
Exit law & cross-scene handoff
Two sanctioned exits — both physical, never an opacity fade in place:
- Leave the frame: accelerate off the nearest edge with
power2.in(left:'118%',left:'-12%', ortop:'116%'), 0.5–0.7s. - Cut-the-curve handoff: in the final ~0.3s before a hard cut, the cursor starts
accelerating (
power2.in) toward the NEXT scene's first click point, covering the first ~1/3 of that path; the next compositiongsap.sets the cursor at the handoff pose and continues withpower2.outat matched velocity. The cursor itself becomes the carrier element that stitches the seam:
// scene A, last 0.3s — start the journey:
tl.to(cursor, { left: "40.7%", top: "63.7%", duration: 0.3, ease: "power2.in" }, CUT - 0.3);
// scene B, t=0 — finish it at matched velocity:
gsap.set(cursorB, { left: "40.7%", top: "63.7%" });
tl.to(cursorB, { left: "22%", top: "45%", duration: 0.6, ease: "power2.out" }, 0);
Checklist
- ≥ 7cqw full-frame (4.6–5.5cqw inside a mock) — when unsure, bigger
- enters from off-screen on one continuous vector (no fade/mask reveal)
- tip lands on the target center; press pivots on
transformOrigin: '21% 14%' - every click causes something, same-frame
- drifts aside during beats it doesn't own; zero idle wobble
- exits physically (off-frame or cut-the-curve handoff) — no fade-in-place
Frequently asked questions about Oversized Cursor
Similar skills
Slack GIF Creator
Create optimized animated GIFs for Slack effortlessly.
Motion Graphics
Create short, design-led motion graphics effortlessly.
HyperFrames Animation
Streamline your animation workflow with comprehensive tools.
Motion Graphics
Create short, impactful motion graphics effortlessly.
Web Animation Design
Create purposeful and natural web animations.
Motion Doctrine
Streamline your animations with cohesive motion rules.
