Circling Elements
Circling Elements is a React and Tailwind CSS component from Fancy Components, licensed MIT. Copy it and paste it into your project.
Fancy Components
MIT
other
What it is
Circling Elements is a React and Tailwind CSS component from Fancy Components, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i motion
Licence
This component comes from Fancy Components and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Circling Elements
"use client"
import { Children } from "react"
import { motion } from "motion/react"
import { cn } from "@/lib/utils"
type CirclingElementsProps = {
children: React.ReactNode
radius?: number
duration?: number // in seconds
easing?: string
direction?: "normal" | "reverse"
className?: string
pauseOnHover?: boolean
}
const CirclingElements: React.FC<CirclingElementsProps> = ({
children,
radius = 100,
duration = 10,
easing = "linear",
direction = "normal",
className,
pauseOnHover = false,
}) => {
return (
<div className={cn("relative z-0 group/circling", className)}>
{Children.map(children, (child, index) => {
const offset = (index * 360) / Children.count(children)
const animationProps = {
"--circling-duration": duration,
"--circling-radius": radius,
"--circling-offset": offset,
"--circling-direction": direction === "reverse" ? -1 : 1,
animation: `circling ${duration}s ${easing} infinite`,
animationName: "circling",
animationDuration: `${duration}s`,
animationTimingFunction: easing,
animationIterationCount: "infinite",
} as React.CSSProperties
return (
<motion.div
key={index}
style={animationProps}
className={cn(
"transform-gpu animate-circling absolute -translate-x-1/2 -translate-y-1/2",
pauseOnHover &&
"group-hover/circling:![animation-play-state:paused]"
)}
>
{child}
</motion.div>
)
})}
</div>
)
}
export default CirclingElements