CSS 투명한 호버 효과 2 정보
CSS CSS 투명한 호버 효과 2본문
CSS 투명한 호버 효과
첫 번째 CSS 블록은 예제 1의 코드와 유사합니다. 또한 사용자가 이미지 중 하나를 가리키면 어떻게 될지 추가했습니다. 이 경우 사용자가 이미지를 가리킬 때 이미지가 투명하게 보이지 않도록해야합니다. 이것에 대한 CSS가 opacity:1;있습니다.
마우스 포인터가 이미지에서 멀리 떨어지면 이미지가 다시 투명 해집니다.
역전 호버 효과의 예 :
예
img:hover {
opacity: 0.5;
filter: alpha(opacity=50); /* For IE8 and earlier */
}
<!DOCTYPE html>
<html>
<head>
<style>
img:hover {
opacity: 0.5;
filter: alpha(opacity=50); /* For IE8 and earlier */
}
</style>
</head>
<body>
<h1>Image Transparency</h1>
<p>The opacity property is often used together with the :hover selector to change the opacity on mouse-over:</p>
<img src="img_forest.jpg" alt="Forest" width="170" height="100">
<img src="img_mountains.jpg" alt="Mountains" width="170" height="100">
<img src="img_fjords.jpg" alt="Fjords" width="170" height="100">
<p><b>Note:</b> In IE, a !DOCTYPE must be added for the :hover selector to work on other elements than the a element.</p>
</body>
</html>
이미지 투명도
불투명도 속성은 마우스 오버시 불투명도를 변경하기 위해 종종 : 호버 선택기와 함께 사용됩니다.
참고 : IE에서 : ! DOCTYPE을 추가하여 : hover 선택기가 a 요소가 아닌 다른 요소에서 작동해야합니다.
추천
0
0
댓글 0개