Prop | Type | Required | Description |
---|
src | String | true | Source URL of the image to be distorted. |
- The component creates a Three.js scene with a custom shader that applies distortion effects to the provided image
- The image is rendered on a plane geometry with proper aspect ratio preservation
- Mouse movement triggers three main effects:
- Grid-based distortion following the mouse movement
- Smooth easing of the distortion effect
- Chromatic aberration effect that intensifies with mouse movement
- Responsive Design
- Automatically adjusts to container size
- Maintains image aspect ratio
- Handles window resize events
- Interactive Effects
- Smooth mouse tracking with easing
- Grid-based pixel displacement
- Dynamic chromatic aberration
- Fluid animation transitions
- Performance Optimized
- Efficient WebGL rendering
- Proper resource cleanup
- Optimized event handlers
You can customize the GridDistortion component by modifying these aspects:
- Grid density (adjust the
20.0
value in the fragment shader) - Distortion strength (modify the
0.2
multiplier in the fragment shader) - Chromatic aberration intensity (adjust the
0.01
value) - Animation easing factor (modify the
easeFactor
value)
This component requires Three.js as a dependency. Ensure your project has Three.js installed: