In this article, I’ll show you how to create a portfolio with effects inspired by the Matrix movie, using React and modern front-end libraries. The project includes animated menus, a “falling code” effect, and many other interactive elements.
Technologies used
- React - main interface building library (Documentation)
- Tailwind CSS - utility-first CSS framework (Documentation)
- Framer Motion - animation library (Documentation)
- EmailJS - sending emails without a backend (Documentation)
- Wouter - lightweight React router (Documentation)
Project structure
The project is divided into several main components:
src/
├── features/
│ ├── articles/
│ ├── home/
│ ├── projects/
│ └── skills/
├── shared/
│ └── components/
│ ├── common/
│ │ ├── MatrixRain.tsx
│ │ ├── TextReveal.tsx
│ │ └── LanguageContext.tsx
│ └── layout/
│ └── Sidebar.tsx
└── App.tsx
Main Matrix effects
1. Falling code effect (MatrixRain)
The most characteristic effect is the Matrix “falling code”, implemented in the MatrixRain.tsx component:
interface MatrixEffectProps {
color?: string;
bgOpacity?: number;
immediate?: boolean;
matrixColors?: string[];
}
const MatrixEffect: React.FC<MatrixEffectProps> = ({
color = '#22b455',
bgOpacity = 0.05,
immediate = false,
matrixColors,
}) => {
const canvasRef = useRef<HTMLCanvasElement | null>(null);
useEffect(() => {
const canvas = document.getElementById('matrixCanvas') as HTMLCanvasElement;
const ctx = canvas.getContext('2d');
if (!ctx) return;
const katakana =
'アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヲン';
const latin = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
const nums = '0123456789';
const letters = katakana + latin + nums;
// Effect implementation
const draw = () => {
ctx.fillStyle = `rgba(0, 0, 0, ${bgOpacity})`;
ctx.fillRect(0, 0, canvas.width, canvas.height);
drops.forEach((y, i) => {
const text = letters.charAt(Math.floor(Math.random() * letters.length));
ctx.fillStyle = matrixColors[Math.floor(Math.random() * matrixColors.length)];
ctx.fillText(text, i * 20, y * 20);
if (y * 20 > canvas.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
});
};
const intervalId = setInterval(draw, 50);
return () => clearInterval(intervalId);
}, [immediate, matrixColors]);
return (
<canvas
id="matrixCanvas"
className="pointer-events-none fixed top-0 left-0 z-0 h-full w-full"
/>
);
};
2. Animated text (TextReveal)
We achieve the “hacking” text effect through the TextReveal component, which gradually reveals text, initially showing random characters:
const TextReveal = ({ text, interval = 150, onComplete }) => {
const [displayText, setDisplayText] = useState('');
useEffect(() => {
let timeoutId: NodeJS.Timeout;
let currentIndex = 0;
const revealNextChar = () => {
if (currentIndex < text.length) {
setDisplayText((prev) => prev + text.charAt(currentIndex));
currentIndex++;
timeoutId = setTimeout(revealNextChar, interval);
} else {
onComplete?.();
}
};
revealNextChar();
return () => clearTimeout(timeoutId);
}, [text, interval, onComplete]);
return <span className="matrix-text">{displayText}</span>;
};
Responsive menu
The menu is built using Framer Motion for smooth animations:
const Sidebar = () => {
const [showMobileMenu, setShowMobileMenu] = useState(true);
useEffect(() => {
let lastScrollY = window.scrollY;
const threshold = 100;
const handleScroll = () => {
const currentScrollY = window.scrollY;
if (currentScrollY - lastScrollY > threshold) {
setShowMobileMenu(false);
} else if (lastScrollY - currentScrollY > threshold) {
setShowMobileMenu(true);
}
lastScrollY = currentScrollY;
};
window.addEventListener('scroll', handleScroll);
return () => window.removeEventListener('scroll', handleScroll);
}, []);
return (
<motion.div
initial={{ y: 0 }}
animate={{ y: showMobileMenu ? 0 : -100 }}
transition={{ duration: 0.3 }}
className="sidebar-mobile-icons"
>
{/* Menu content */}
</motion.div>
);
};
Contact form with EmailJS
The contact form implementation uses EmailJS for simple handling without a backend:
const ContactModal = ({ onClose }: ContactModalProps) => {
const formRef = useRef<HTMLFormElement>(null);
const { toast } = useToast();
const handleSubmit = async (event: React.FormEvent<HTMLFormElement>) => {
event.preventDefault();
if (!formRef.current) return;
try {
await emailjs.sendForm('service_id', 'template_id', formRef.current, 'user_id');
toast({
title: 'Message sent',
description: 'Your message has been sent successfully.',
});
onClose();
} catch (error) {
toast({
title: 'Error',
description: 'There was an error sending your message.',
});
}
};
return (
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className="contact-modal"
>
{/* Form content */}
</motion.div>
);
};
Implementation tips
-
Customizing the Matrix effect:
- Modify bgOpacity for different effect intensity
- Adjust interval in setInterval for different character “falling” speeds
- Change character sets in letters for different visual effects
-
Animation optimization:
- Use useCallback for functions in effects
- Use requestAnimationFrame instead of setInterval for smoother animations
- Adjust the threshold value in the menu for better responsiveness
-
Styling:
:root { --matrix-black: #000000; --matrix-bg: #0c1714; --matrix-darker: #0a3622; --matrix-dark: #204829; --matrix-primary: #22b455; --matrix-light: #80ce87; --matrix-hover: #33ff33; } -
Responsiveness:
- Use Tailwind breakpoints (md:, lg:)
- Adjust Matrix character size on different devices
- Use Flexbox and Grid for better layouts
Customizing the project
-
Changing the color scheme:
const getMatrixColors = () => { const rootStyles = getComputedStyle(document.documentElement); return [ rootStyles.getPropertyValue('--matrix-black').trim(), rootStyles.getPropertyValue('--matrix-bg').trim(), rootStyles.getPropertyValue('--matrix-darker').trim(), rootStyles.getPropertyValue('--matrix-dark').trim(), ]; }; -
Animation modification:
- Adjust transition parameters in Framer Motion components
- Change the typing speed in TextReveal
- Modify hover effects on cards and buttons
-
Extending functionality:
- Add more Matrix effects
- Implement additional transition animations
- Extend the theme system
Summary
A Matrix-style portfolio is a great way to showcase your skills in a visually attractive way. The key to success is properly combining visual effects with good performance and responsiveness.
Remember to:
- Optimize effects for less powerful devices
- Maintain accessibility despite visual effects
- Strike the right balance between aesthetics and usability
- Test on different devices and browsers