panel-web/packages/shadcn/src/components/ui/background-gradient.tsx
2024-11-14 21:21:00 +07:00

74 lines
2.4 KiB
TypeScript

// @ts-nocheck
import { motion } from 'framer-motion';
import React from 'react';
import { cn } from '../../lib/utils';
export const BackgroundGradient = ({
children,
className,
containerClassName,
animate = true,
}: {
children?: React.ReactNode;
className?: string;
containerClassName?: string;
animate?: boolean;
}) => {
const variants = {
initial: {
backgroundPosition: '0 50%',
},
animate: {
backgroundPosition: ['0, 50%', '100% 50%', '0 50%'],
},
};
return (
<div className={cn('group relative p-[4px]', containerClassName)}>
<motion.div
variants={animate ? variants : undefined}
initial={animate ? 'initial' : undefined}
animate={animate ? 'animate' : undefined}
transition={
animate
? {
duration: 5,
repeat: Infinity,
repeatType: 'reverse',
}
: undefined
}
style={{
backgroundSize: animate ? '400% 400%' : undefined,
}}
className={cn(
'absolute inset-0 z-[1] rounded-3xl opacity-60 blur-xl transition duration-500 will-change-transform group-hover:opacity-100',
'bg-[radial-gradient(circle_farthest-side_at_0_100%,#00ccb1,transparent),radial-gradient(circle_farthest-side_at_100%_0,#7b61ff,transparent),radial-gradient(circle_farthest-side_at_100%_100%,#ffc414,transparent),radial-gradient(circle_farthest-side_at_0_0,#1ca0fb,#141316)]',
)}
/>
<motion.div
variants={animate ? variants : undefined}
initial={animate ? 'initial' : undefined}
animate={animate ? 'animate' : undefined}
transition={
animate
? {
duration: 5,
repeat: Infinity,
repeatType: 'reverse',
}
: undefined
}
style={{
backgroundSize: animate ? '400% 400%' : undefined,
}}
className={cn(
'absolute inset-0 z-[1] rounded-3xl will-change-transform',
'bg-[radial-gradient(circle_farthest-side_at_0_100%,#00ccb1,transparent),radial-gradient(circle_farthest-side_at_100%_0,#7b61ff,transparent),radial-gradient(circle_farthest-side_at_100%_100%,#ffc414,transparent),radial-gradient(circle_farthest-side_at_0_0,#1ca0fb,#141316)]',
)}
/>
<div className={cn('relative z-10', className)}>{children}</div>
</div>
);
};