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

ทำความเข้าใจกับฟังก์ชันตัวกรอง CSS3


ฟังก์ชันตัวกรองใช้เพื่อตั้งค่าเอฟเฟ็กต์ภาพบนองค์ประกอบต่างๆ เช่น คอนทราสต์ ความสว่าง การหมุนสี ความทึบ บนภาพ ฯลฯ ตอนนี้ให้เราดูฟังก์ชันตัวกรองบางอย่าง -

คอนทราสต์

ในการตั้งค่าคอนทราสต์ของรูปภาพใน CSS ให้ใช้ฟิลเตอร์คอนทราสต์ (%) โปรดจำไว้ว่า ค่า 0 ทำให้รูปภาพเป็นสีดำ 100% สำหรับรูปภาพต้นฉบับและค่าเริ่มต้น พักผ่อน คุณสามารถตั้งค่าใดก็ได้ตามต้องการ แต่ค่าที่สูงกว่า 100% จะทำให้ภาพมีความเปรียบต่างมากขึ้น

ตัวอย่าง

เรามาดูตัวอย่างการปรับคอนทราสต์ของภาพด้วย CSS3 กัน −

<!DOCTYPE html>
<html>
<head>
<style>
img.demo {
   filter: brightness(120%);
   filter: contrast(120%);
}
</style>
</head>
<body>
<h1>Learn MySQL</h1>
<img src="https://www.tutorialspoint.com/mysql/images/mysql-mini-logo.jpg" alt="MySQL" width="160" height="150">
<h1>Learn MySQL</h1>
<p>Below image is brighter and has more contrast than the original image above.</p>
<img class="demo" src="https://www.tutorialspoint.com/mysql/images/mysql-mini-logo.jpg" alt="MySQL" width="160" height="150">
</body>
</html>

ผลลัพธ์

ทำความเข้าใจกับฟังก์ชันตัวกรอง CSS3

เงาตกกระทบ

หากต้องการเพิ่มเงาให้กับรูปภาพใน CSS3 ให้ใช้ค่าเงามืดสำหรับคุณสมบัติตัวกรอง มีค่าดังต่อไปนี้ -

เงา – เพื่อระบุค่าพิกเซลสำหรับเงาแนวนอน

v-shadow – เพื่อระบุค่าพิกเซลสำหรับเงาแนวตั้ง ค่าลบจะทำให้เงาอยู่เหนือภาพ

เบลอ – เพื่อเพิ่มเอฟเฟกต์เบลอให้กับเงา

กระจาย - ค่าบวกทำให้เงาขยายตัวและค่าลบหดตัว

สี – เพื่อเพิ่มสีสันให้กับเงา

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

<!DOCTYPE html>
<html>
<head>
<style>
img.demo {
   filter: brightness(120%);
   filter: contrast(120%);
   filter: drop-shadow(10px 10px 10px green);
}
</style>
</head>
<body>
<h1>Learn MySQL</h1>
<img src="https://www.tutorialspoint.com/mysql/images/mysql-mini-logo.jpg" alt="MySQL" width="160" height="150">
<h1>Learn MySQL</h1>
<img class="demo" src="https://www.tutorialspoint.com/mysql/images/mysql-mini-logo.jpg" alt="MySQL" width="160" height="150">
</body>
</html>

ผลลัพธ์

ทำความเข้าใจกับฟังก์ชันตัวกรอง CSS3

เอฟเฟกต์ซีเปีย

หากต้องการใช้เอฟเฟกต์ซีเปียกับรูปภาพโดยใช้ CSS3 ให้ใช้ค่าซีเปียสำหรับคุณสมบัติตัวกรอง รหัสมีดังต่อไปนี้ −

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
img.demo {
   filter: sepia(100%);
}
</style>
</head>
<body>
<h1>Learn Spring Framework</h1>
<img src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring Framework" width="160" height="150">
<h1>Learn Spring Framework</h1>
<img class="demo" src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring Framework" width="160" height="150">
</body>
</html>

ผลลัพธ์

ทำความเข้าใจกับฟังก์ชันตัวกรอง CSS3