”工欲善其事,必先利其器。“—孔子《论语.录灵公》
首页 > 编程 > CSS 中的简单图像比较

CSS 中的简单图像比较

发布于2024-11-04
浏览:373

CSS 中图像比较的简单技巧

Simple Image Comparison in CSS

让我们创建输入范围滑块及其下面的两个 div,其类名为 .front.back 在父 div 内,类名为“.img-before-after” '。将内联样式 width:50% 分配给 .front div

img-before-afterinput-rangeinput-slider-thumbfront后退

body {
    background: #d6d6d6;
}

.img-before-after {
    position: relative;
    width: 900px;
    height: 600px;
}

input[type="range"] {
    background: transparent;
    width: 100%;
    height: 100%;
    margin: 0;
    outline: none;
    position: absolute;
    z-index: 2;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    width: 10px;
    height: 600px;
    cursor: pointer;
    -webkit-appearance: none;
    background: black;
}

.front.back div添加背景图片。

.front, .back {
    position: absolute;
    width: 100%;
    height: 600px;
    background: url("https://shorturl.at/kbKhz") no-repeat;
    background-size: cover;
    z-index: 1;
}

让我们将 .back div 发送到 .front div 后面,并使用 z-index 并将其设为灰度。

.back {
    filter: grayscale(1);
    z-index: 0;
}

我们需要在拖动输入滑块时动态增加/减少'.front' div 的宽度。我们必须将输入范围值附加到 '.front' div.
的宽度

oninput="this.nextElementSibling.style.width = `${this.value}%`"

输出:

Simple Image Comparison in CSS

下面您可以在开发工具中观察当我们拖动滑块范围时宽度如何增加和减少。

Simple Image Comparison in CSS

您可以尝试使用 CSS 的不同变体,例如 blurinvert 等,如下所示。

模糊

.back {
    filter: blur(5px);
    z-index: 0;
}

Simple Image Comparison in CSS

倒置

.back {
    filter: invert(1);
    z-index: 0;
}

Simple Image Comparison in CSS

最终输出: 灰度

Simple Image Comparison in CSS

感谢您的观看...

版本声明 本文转载于:https://dev.to/prahalad/simple-image-comparison-in-css-48fd?1如有侵犯,请联系[email protected]删除
最新教程 更多>

免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。

Copyright© 2022 湘ICP备2022001581号-3