Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

เปลี่ยนความทึบของภาพเมื่อวางเมาส์


ใช้คุณสมบัติความทึบด้วยตัวเลือก :hover เพื่อเปลี่ยนความทึบเมื่อวางเมาส์ ต่อไปนี้เป็นรหัสสำหรับเปลี่ยนความทึบของภาพเมื่อวางเมาส์เหนือ -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
body{
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.transparent{
   width:270px;
   height:200px;
   opacity: 1;
   transition: 0.3s;
}
.transparent:hover{
   opacity: 0.3;
}
</style>
</head>
<body>
<h1>Image opacity on hover example</h1>
<img class="transparent" src="https://i.picsum.photos/id/505/800/800.jpg" >
<h2>Hover over the above image to change its opacity</h2>
</body>
</html>

ผลลัพธ์

รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

เปลี่ยนความทึบของภาพเมื่อวางเมาส์