이 글에서는 주로 마우스를 움직일 때 마우스를 점차적으로 강조 표시하는 순수 CSS 구현을 소개합니다. 이제 특정 참조 값이 있으므로 필요한 친구가 참조할 수 있도록 공유합니다.
이 예제에서는 주로 전환을 사용합니다. 마우스를 이동한 후 레이블이 점차 강조 표시되면서 점진적인 프로세스가 있다는 것을 알 수 있습니다. 구체적인 방법: 배경색, 색상 및 기타 속성을 애니메이션으로 실행합니다.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>鼠标移入文本高亮显示</title> <style type="text/css"> li{ width: 400px; list-style: none; line-height: 2rem; color: black; transition: background-color 1s linear,color 1s linear; -webkit-transition: background-color 1s linear,color 1s linear; -moz-transition: background-color 1s linear,color 1s linear; -o-transition: background-color 1s linear,color 1s linear; } li:hover{ background-color: #FF3d67; color: blue; } </style> </head> <body> <ul> <li>1.秦时明月之君临天下</li> <li>2.秦时明月之沧海横流</li> <li>3.秦时明月之诸子百家</li> </ul> </body> </html>
효과 비교
관련 권장사항:
위 내용은 순수 CSS는 마우스가 움직일 때 점진적인 강조 표시를 실현합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!