Components
An interactive 3D scroll book component with GSAP animations that displays demo sketches as pages. Features smooth page-turning animations triggered by scroll, with each page containing CodePen demo previews. The book scales and rotates as users scroll through the content, creating an immersive reading experience.
Loading preview...
import React from 'react';
import BookComponent from '../components/ui/scroll-book';
const DefaultDemo: React.FC = () => {
return (
<div style={{ width: '100%', height: '100vh' }}>
<BookComponent />
</div>
);
};
export default DefaultDemo;