Vous pouvez essayer d'exécuter le code suivant pour faire apparaître le bouton en survol en utilisant CSS
Démo en direct
<!DOCTYPE html> <html> <head> <style> .btn { background-color: orange; color: white; padding: 10px; text-align: center; font-size: 16px; margin: 5px; opacity: 0.5; transition: 0.5s; display: inline-block; text-decoration: none; cursor: pointer; } .btn:hover { opacity: 2 } </style> </head> <body> <button class = "btn">Result</button> </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!