Command Palette
Search for a command to run...
Loading component...
Box loading preloader
Advanced particle system preloader with dynamic motion and interactive elements. Features floating particles that respond to user interaction, creating an immersive loading experience with smooth physics-based animations and customizable particle behaviors.
Best Viewed on
Dependencies
Interaction Type
Watch the preloader animation | |
Wait for the preloader to complete |
CLI UNAVAILABLE
pro component, try copying the source code from top right corner
How to use
const DemoSkiper15 = () => { const [showPreloader, setShowPreloader] = useState(true); useEffect(() => { const timer = setTimeout(() => { setShowPreloader(false); }, 3000); return () => clearTimeout(timer); }, []); return ( <main className="relative"> <AnimatePresence mode="popLayout"> {showPreloader && ( <motion.div key="preloader" initial={{ y: 0 }} exit={{ y: "-100%" }} className="h-full w-full" transition={{ duration: 1, ease: [0.785, 0.135, 0.15, 0.86] }} > <PreLoader_006 /> </motion.div> )} </AnimatePresence> <Main /> </main> ); };
Source code
Click on the top right to view the source code
Keep in mind
Most components here are recreations of the best out there. I don't claim to be the original creator. This is my attempt to reverse-engineer, replicate, and often add a few extra features. I've tried to credit everyone, but if I missed something, let me know.
Contact
Additionlly, if you find any bug or issue, feel free toDrop a dm.
License & Usage:
- Free to use and modify in both personal and commercial projects.
- Attribution to Skiper UI is required when using the free version.
- No attribution required with Skiper UI Pro.