framer-core-workflow-b

Featured

Execute Framer secondary workflow: Core Workflow B. Use when implementing secondary use case, or complementing primary workflow. Trigger with phrases like "framer secondary workflow", "secondary task with framer".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Framer Code Components & Overrides ## Overview Build code components with property controls and code overrides for Framer sites. Components are custom React rendered on the canvas. Overrides modify existing layer behavior (animations, interactions) without changing the component. ## Prerequisites - Framer project open in editor - Understanding of React and Framer Motion ## Instructions ### Step 1: Code Component with Property Controls ```tsx import { addPropertyControls, ControlType } from 'framer'; import { useRef, useEffect, useState } from 'react'; interface Props { target: number; duration: number; suffix: string; fontSize: number; color: string; } export default function AnimatedCounter({ target = 1000, duration = 2, suffix = '+', fontSize = 48, color = '#000' }: Props) { const ref = useRef(null); const [count, setCount] = useState(0); const [started, setStarted] = useState(false); useEffect(() => { const observer = new IntersectionObserver(([e]) => { if (e.isIntersecting) setStarted(true); }, { threshold: 0.5 }); if (ref.current) observer.observe(ref.current); return () => observer.disconnect(); }, []); useEffect(() => { if (!started) return; const inc = target / (duration * 60); let val = 0; const timer = setInterval(() => { val += inc; if (val >= target) { setCount(target); clearInterval(timer); } else setCount(Math.floor(val)); }, 1000 / 60); return () => clearInterval(timer); }, [starte...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

framer-core-workflow-a

Execute Framer primary workflow: Core Workflow A. Use when implementing primary use case, building main features, or core integration tasks. Trigger with phrases like "framer main workflow", "primary task with framer".

2,266 Updated today
jeremylongshore
AI & Automation Featured

framer-hello-world

Create a minimal working Framer example. Use when starting a new Framer integration, testing your setup, or learning basic Framer API patterns. Trigger with phrases like "framer hello world", "framer example", "framer quick start", "simple framer code".

2,266 Updated today
jeremylongshore
Web & Frontend Listed

framer-motion

Comprehensive Framer Motion animation library for React. Covers motion components, variants, gestures, page transitions, and scroll animations. Use when adding animations to React/Next.js applications.

335 Updated today
aiskillstore
AI & Automation Featured

framer-common-errors

Diagnose and fix Framer common errors and exceptions. Use when encountering Framer errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "framer error", "fix framer", "framer not working", "debug framer".

2,266 Updated today
jeremylongshore
AI & Automation Featured

framer-performance-tuning

Optimize Framer API performance with caching, batching, and connection pooling. Use when experiencing slow API responses, implementing caching strategies, or optimizing request throughput for Framer integrations. Trigger with phrases like "framer performance", "optimize framer", "framer latency", "framer caching", "framer slow", "framer batch".

2,266 Updated today
jeremylongshore