Maison > Article > interface Web > Comment faire disparaître progressivement les CSS
Méthode CSS pour disparaître progressivement : utilisez d'abord la règle "@keyframes" et l'attribut d'animation pour définir l'animation ; puis ajoutez le style "opacity:1;" au début de l'animation pour définir l'état normal ; enfin, ajoutez le style "opacity:1;" à la fin de l'animation. Le style "opacity:0;" définit l'état entièrement transparent et masque l'élément.
L'environnement d'exploitation de ce tutoriel : système Windows 7, version CSS3&&HTML5, ordinateur Dell G3.
.hideSlow{ background: #a40808; color: #fff; animation: hidetip 5s 1; animation-fill-mode: forwards; -webkit-animation: showtip 5s 1; -webkit-animation-fill-mode: forwards; } @keyframes hidetip { from { opacity: 1; } to { opacity: 0; } } @-webkit-keyframes hidetip { from { opacity: 1; } to { opacity: 0; } }
Apprentissage recommandé : Tutoriel vidéo 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!