Utilisez la propriété transition-delay de CSS pour retarder l'effet de transition. Vous pouvez essayer d'exécuter le code suivant pour définir un délai de transition d'une seconde :
Démo en ligne
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 150px; background: blue; transition: width 3s; transition-delay: 1s; } div:hover { width: 250px; } </style> </head> <body> <h1>Heading One</h1> <p>Hover over the below box to change its width. It begins with a delay of 1 second.</p> <div></div> </body> </html>
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!