CSS를 사용하여 마우스를 올리면 버튼이 페이드 인되도록 다음 코드를 실행할 수 있습니다.
Live Demo
<!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>
위 내용은 CSS를 사용하여 마우스를 올리면 페이드 인 버튼의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!