3d Cursor Effect
An interactive React component that adds a dynamic bubble effect, visually tracking cursor movement in real time.
An interactive React component that adds a dynamic bubble effect, visually tracking cursor movement in real time.
1'use client';23import { useState, HTMLAttributes } from 'react';4import { useMouse } from '@/hooks/use-mouse';56// Define an interface for the component's props7interface ScalingCursorProps extends HTMLAttributes<HTMLDivElement> {8cursorSize?: number;9cursorColor?: string;10hoverScale?: number;11hoverRotation?: number;12blendMode?:13| 'normal'14| 'multiply'15| 'screen'16| 'overlay'17| 'darken'18| 'lighten'19| 'color-dodge'20| 'color-burn';21}2223const ScalingCursor = ({24cursorSize = 24, // default to 24px25cursorColor = 'bg-purple-500',26hoverScale = 2,27hoverRotation = 45,28blendMode = 'screen',29className,30...rest31}: ScalingCursorProps) => {32const [mouseState, ref] = useMouse();33const [isHovering, setIsHovering] = useState(false);3435return (36<div className={`relative w-full h-full ${className}`} ref={ref} {...rest}>37{mouseState.x !== null && mouseState.y !== null && (38<div39className='fixed pointer-events-none z-50 transition-all duration-300'40style={{41left: mouseState.x,42top: mouseState.y,43transform: `translate(-50%, -50%)44scale(${isHovering ? hoverScale : 1})45rotate(${isHovering ? `${hoverRotation}deg` : '0deg'})`,46}}47>48<div49className={`${cursorColor} rounded-full mix-blend-${blendMode}`}50style={{51width: `${cursorSize}px`,52height: `${cursorSize}px`,53}}54/>55</div>56)}5758<div className='flex items-center justify-center h-full gap-8'>59<button60className='px-6 py-3 bg-purple-600 text-white rounded-lg hover:bg-purple-700 transition-colors'61onMouseEnter={() => setIsHovering(true)}62onMouseLeave={() => setIsHovering(false)}63>64Hover to Scale & Rotate65</button>66</div>67</div>68);69};7071export default ScalingCursor;72
| Prop | Type | Default | Description |
| --------------- | --------- | ----------------- | ---------------------------------------------------------------------- | --------- | -------- | --------- | ------------- | ------------- | ---------- | ------------------------------------- |
| cursorSize
| number
| 24
| The size of the cursor in pixels. |
| cursorColor
| string
| 'bg-purple-500'
| The background color of the cursor. |
| hoverScale
| number
| 2
| The scale factor applied when hovering over an element. |
| hoverRotation
| number
| 45
| The rotation angle (in degrees) applied when hovering over an element. |
| blendMode
| 'normal' | 'multiply' | 'screen' | 'overlay' | 'darken' | 'lighten' | 'color-dodge' | 'color-burn'
| 'screen'
| The blend mode applied to the cursor. |
| className
| string
| undefined
| Additional class names to apply to the cursor element. |