Tailwind CSS - 背景灰度 (Backdrop Grayscale)



Tailwind CSS 背景灰度 (Backdrop Grayscale) 是一个实用程序类,用于将背景灰度滤镜应用于元素。

Tailwind CSS 背景灰度类

以下是用于有效应用背景灰度滤镜的Tailwind CSS 背景灰度类列表。

类名 CSS 属性
backdrop-grayscale-0 filter: backdrop-grayscale(0);
backdrop-grayscale filter: backdrop-grayscale(100%);

Tailwind CSS 灰度类的功能

  • backdrop-grayscale-0: 此类用于从元素中移除背景灰度滤镜。
  • backdrop-grayscale: 此类用于将背景灰度滤镜应用于元素。

Tailwind CSS 背景灰度类示例

以下示例说明了 Tailwind CSS 背景灰度类的不同可见性和实用程序。

示例

<!DOCTYPE html>
<html>
<head>
    <script src="https://cdn.tailwindcss.com"></script>
</head>

<body class="p-8">
    <h2 class="text-2xl font-bold mb-3">
        Tailwind CSS Backdrop Grayscale Classes
    </h2>
    <div class="flex gap-3 flex-wrap ">

        <div class="relative w-44 h-44">
            <img class="object-cover w-full h-full" 
                    src=
"/javascript/images/javascript.jpg" 
                    alt="Image">
            <div class="backdrop-grayscale-0 absolute w-36 h-36
                        border-2 border-green-500 top-4 left-4 
                        text-lime-100 font-bold py-12 text-center">
                Backdrop-grayscale-0
            </div>
        </div>
        
        <div class="relative w-44 h-44 ">
            <img class="object-cover w-full h-full" 
                    src=
"/javascript/images/javascript.jpg" 
                    alt="Image">
            <div class="backdrop-grayscale absolute w-36 h-36
                        border-2 border-green-500 top-4 left-4 
                        text-lime-100 font-bold py-12 text-center">
                Backdrop-grayscale
            </div>
        </div>
    </div>
</body>

</html>
广告