1

这是一个真正的 css 挑战,我认为这是不可能的:

我做了一些白色的css三角形。当您将鼠标悬停在三角形上时,白色三角形应该会在照片中发生变化,也像三角形一样裁剪。我为它做了一个jsfiddle:

小提琴链接

任何帮助表示赞赏

4

1 回答 1

2

你可以使用 svg 来实现这个效果:http: //jsfiddle.net/xTd6Y/4/

<div id="image-wrapper">
    <svg id="svg-1" class="clip-svg">
        <rect class='svg-background' width="300" height="300" fill="#ffffff" />
        <image id="img-1" class='svg-image' width="300" height="300" xlink:href="http://lorempixel.com/300/300" />
    </svg>
    <svg id="svg-2" class="clip-svg">
        <rect class='svg-background' width="300" height="300" fill="#ffffff" />
        <image id="img-2" class='svg-image' width="300" height="300" xlink:href="http://lorempixel.com/300/301" />
    </svg>
    <svg id="svg-3" class="clip-svg">
        <rect class='svg-background' width="300" height="300" fill="#ffffff" />
        <image id="img-3" class='svg-image' width="300" height="300" xlink:href="http://lorempixel.com/300/302" />
    </svg>
</div>
<svg id="svg-defs">
    <defs>
        <clipPath id="clip-triangle">
            <polygon points="0, 200 100, 0 200, 200"/>
        </clipPath>
    </defs>
</svg>

css

body {
    background-color: #e0e0e0;
}
#image-wrapper {
    position: relative;
}
.svg-background, .svg-image {
    clip-path: url(#clip-triangle);
}
.svg-image {
    visibility: hidden;
}
.clip-svg .svg-image:hover {
    visibility: inherit;
}

/* size and positioning */
 svg.clip-svg {
    position: absolute;
    height: 250px;
    width: 250px;
}
#svg-1 {
    top: 110px;
    left: 50px;
}
#svg-2 {
    top: 40px;
    left: 140px;
}
#svg-3 {
    top: 160px;
    left: 250px;
}

剪切路径在 svg#svg-defs 中定义,并且可以设置为您喜欢的任何内容。

图像属性对 js 和 css 可见/可访问。您可以使用 css 将剪切路径应用于任何 html 元素

myElement {
    clip-path: url(#clip-triangle);
}

但据我所知,这仅在 Firefox 上可靠。

注意:解决方案仅在 FF 和 chrome 上测试

注意::hover从 svg 移动到嵌入图像的小编辑,以纠正在剪辑区域外触发悬停的问题

于 2013-07-15T00:37:48.573 回答