다음은 CSS로 페이딩 버튼을 만드는 코드입니다 -
예시
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> button { background-color: rgb(255, 175, 222); border: none; color: black; padding: 25px; text-align: center; font-size: 20px; margin: 4px 2px; transition: 0.3s; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-weight: bolder; } button:hover { background-color: #4d0036; color: white; } </style> </head> <body> <h1>Fading Button Example</h1> <button>Hover Here</button> <h1>Hover on the above button to see background fade on button</h1> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
버튼을 가리키면 더 어두운 배경이 페이드 인됩니다 -