Reveal On Scroll
Reveal On Scroll is a React and Tailwind CSS media component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
Motion Primitives
MIT
media
What it is
Reveal On Scroll is a React and Tailwind CSS media 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.
Needs
npm i motion
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.
Reveal On Scroll
'use client';
import { InView } from '@/components/core/in-view';
import { motion } from 'motion/react';
export function InViewImagesGrid() {
return (
<div className='h-full w-full overflow-auto'>
<div className='mb-20 py-12 text-center text-sm'>Scroll down</div>
<div className='flex h-[1200px] items-end justify-center pb-12'>
<InView
viewOptions={{ once: true, margin: '0px 0px -250px 0px' }}
variants={{
hidden: {
opacity: 0,
},
visible: {
opacity: 1,
transition: {
staggerChildren: 0.09,
},
},
}}
>
<div className='columns-2 gap-4 px-8 sm:columns-3'>
{[
'https://images.beta.cosmos.so/e5ebb6f8-8202-40ec-bc70-976f81153501?format=jpeg',
'https://images.beta.cosmos.so/1b6f1bee-1b4c-4035-9e93-c93ef4d445e1?format=jpeg',
'https://images.beta.cosmos.so/9968a6cf-d7f6-4ec9-a56d-ac4eef3f8689?format=jpeg',
'https://images.beta.cosmos.so/4b88a39c-c657-4911-b843-b473237e83b5?format=jpeg',
'https://images.beta.cosmos.so/86af92c0-064d-4801-b7ed-232535b03328?format=jpeg',
'https://images.beta.cosmos.so/399e2a4a-e118-4aaf-9c7e-155ed18f6556?format=jpeg',
'https://images.beta.cosmos.so/6ff16bc9-dc94-4549-a057-673a603ce203?format=jpeg',
'https://images.beta.cosmos.so/d67c3185-4480-4408-8f9d-1cbf541e5d91?format=jpeg',
'https://images.beta.cosmos.so/a7b19274-3370-4080-b734-e8ac268d8c8e.?format=jpeg',
'https://images.beta.cosmos.so/551daf0d-77e8-472c-9324-468fed15a0ba?format=jpeg',
].map((imgSrc, index) => {
return (
<motion.div
variants={{
hidden: { opacity: 0, scale: 0.8, filter: 'blur(10px)' },
visible: {
opacity: 1,
scale: 1,
filter: 'blur(0px)',
},
}}
key={index}
className='mb-4'
>
<img
src={imgSrc}
alt={`Image placeholder from cosmos.so, index:${index}`}
className='size-full rounded-lg object-contain'
/>
</motion.div>
);
})}
</div>
</InView>
</div>
</div>
);
}