Before And After Slider
Before And After Slider is a React and Tailwind CSS form component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
Motion Primitives
MIT
forms
What it is
Before And After Slider is a React and Tailwind CSS form component from Motion Primitives, 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.
Four free copies a week. No card.
No packages beyond the project baseline
Licence
This component comes from Motion Primitives and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Before And After Slider
import {
ImageComparison,
ImageComparisonImage,
ImageComparisonSlider,
} from '@/components/core/image-comparison';
export function ImageComparisonCustomSlider() {
return (
<ImageComparison className='aspect-16/10 w-full rounded-lg border border-zinc-200 dark:border-zinc-800'>
<ImageComparisonImage
src='/mp_dark.png'
alt='Motion Primitives Dark'
position='left'
/>
<ImageComparisonImage
src='/mp_light.png'
alt='Motion Primitives Light'
position='right'
/>
<ImageComparisonSlider className='w-2 bg-white/50 backdrop-blur-xs transition-colors hover:bg-white/80'>
<div className='absolute left-1/2 top-1/2 h-8 w-6 -translate-x-1/2 -translate-y-1/2 rounded-[4px] bg-white' />
</ImageComparisonSlider>
</ImageComparison>
);
}