Transition ile Yumusak Gecisler
/* (c) CodeMareFi - codemarefi.com.tr */
.buton {
background: #e60000; color: #fff; padding: 12px 24px;
border: none; border-radius: 6px; cursor: pointer;
transition: all 0.3s ease;
}
.buton:hover {
background: #fff; color: #e60000;
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(230,0,0,0.4);
}
Keyframes ile Ozel Animasyonlar
/* (c) CodeMareFi - codemarefi.com.tr */
@keyframes yanipSonme {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.05); }
}
@keyframes donme {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.spinner {
width: 40px; height: 40px;
border: 4px solid rgba(230,0,0,0.2);
border-top-color: #e60000;
border-radius: 50%;
animation: donme 0.8s linear infinite;
}
© CodeMareFi
Bu icerik codemarefi.com.tr ye aittir.