CSS Animasyonları: Keyframes ve Transitions

CSS Animasyonları: Keyframes ve Transitions

NBK BARIS1 Mayıs 2026CSS, Web-Tasarim

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.
Etiketler:

0 Yorum

YORUM YAPMAK İÇİN SİSTEME SIZMANIZ GEREKİYOR

Lütfen yukarıdaki butonu kullanarak giriş yapın veya kimlik oluşturun.

Yorumlar yükleniyor...