https://github.com/user-attachments/assets/e78938ba-e822-4ac0-af3e-d73dbf5ba6ef
An interactive 3D image gallery built with Svelte, Threlte, and Three.js. Features a dynamic grid of images with spring-based animations and hover effects.
The gallery is highly configurable. Here are the main parameters you can adjust in src/routes/Scene.svelte
:
// Grid Layout
const gridSize = { rows: 13, cols: 14 }; // Adjust grid dimensions
const spacing = 1.5; // Space between images
// Hover Effects
const maxHoverScale = 3; // Maximum scale on hover
const hoverRadius = spacing * 2; // How far the effect spreads
const lerpFactor = 0.15; // Hover animation smoothness
// Animation
const animationDelay = 60; // Delay between each image animation (ms)
const springConfig = { // Spring physics configuration
stiffness: 0.1, // Lower = more bouncy
damping: 0.9 // Higher = less oscillation
};
// Color Effects
const maxSaturation = 1; // Full color when hovered
const minSaturation = 0; // Grayscale when not hovered
// Image Settings
const imageSize = 400; // Size of loaded images (px)
Clone the repository:
git clone https://github.com/JollyGrin/threejs-gallery.git
cd threejs-gallery
Install dependencies:
npm install
Start the development server:
npm run dev
MIT