Interactive Demo
See Eivih's web components and performance features in action. Click on any element to see how it responds.
Eivih Card
Click me to demonstrate interaction
This is a card with hover and click feedback!
.js
main
•
Line 1 of 12
Run
// Interactive component example
const button = document.getElementById('interactive-button');
button.addEventListener('mouseenter', () => {
button.style.transform = 'scale(1.05)';
button.style.transition = 'transform 0.2s ease-out';
});
button.addEventListener('mouseleave', () => {
button.style.transform = 'scale(1)';
button.style.transition = 'transform 0.2s ease-out';
});
Live Preview
Eivih v1.2.0
Ready to Use Components
Dropdown Menu
Toggle Switch
Enable Feature