Popular CSS Effects

Card Hover Zoom

Hover Me
.card-hover-zoom:hover { transform: scale(1.1); transition: transform 0.3s; }

Image Carousel

.image-carousel img { width: 100%; display: block; }

Button Ripple Effect

.button-ripple:after { animation: ripple 0.6s ease-out; }

Floating Button

FB
.floating-button { position: fixed; bottom: 20px; right: 20px; }

Loading Spinner

.loading-spinner { animation: spin 1s linear infinite; }

Parallax Background

.parallax { background-attachment: fixed; }

Card Flip

Front
Back
.card-flip:hover .card-inner { transform: rotateY(180deg); }

Wave Animation

@keyframes wave { transform: translateX(-100%); }