Maison > Article > interface Web > CSS pour obtenir un effet clignotant de couleur d'arrière-plan div
Jetons d'abord un coup d'œil aux rendus :
(Tutoriel vidéo recommandé : Tutoriel vidéo CSS)
Implémentation du code :
<!DOCTYPE html> <html> <head> <style> @keyframes fade { from { opacity: 1.0; } 50% { opacity: 0.0; } to { opacity: 1.0; } } .headerBox { width:100px; background: #ff0; padding: 10px; font-size: 15px; height: 100px; animation: fade 600ms infinite; } </style> </head> <body> <div> </div> </body> </html>
Tutoriel recommandé : Tutoriel CSS
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!