gpt4 book ai didi

css - 显示内容的三 Angular 形

转载 作者:行者123 更新时间:2023-11-28 15:57:09 25 4
gpt4 key购买 nike

您好,我正在尝试创建一个也适用于 ie10 的跨浏览器 css 三 Angular 形 mask 。

这是我的 http://codepen.io/adamjw3/pen/RoxrNJ但它在 ie 中不起作用。还有其他方法吗?

 .slider {
-webkit-clip-path: polygon(0 0, 68% 81%, 100% 0);
clip-path: polygon(0 0, 68% 81%, 100% 0);
overflow: hidden;
margin: 0 auto;
width: 30%;
}

img {
height: 100%;
width: 100%;
max-width: 100%;
}

最佳答案

IE 不支持它。你可以想出不同的方法。为什么不通过 css 制作一个三 Angular 形并在其中保留图像?

更多信息在这里

http://caniuse.com/#search=clip-path

更新:三 Angular 形的另一个概念

.box1 {
width: 232px;
height: 180px;
border-bottom: 1px solid #000;
overflow: hidden;
}
.box2 {
position: relative;
overflow: hidden;
transform: rotate(45deg) skew(10deg, 10deg);
border-left: 1px solid #000;
border-top: 1px solid #000;
width: 200px;
height: 200px;
margin: 81px 0 0 16px;
}
.box2_bg {
position: absolute;
width: 200%;
height: 200%;
top: -50%;
left: -50%;
z-index: -1;
background: url(https://s3.amazonaws.com/uifaces/faces/twitter/brad_frost/128.jpg);
background-size: 100%;
background-position: center top;
transform: skew(-10deg, -10deg) rotate(-45deg);
transition: .3s;
background-size: 50%;
}
.box2_bg:hover {
background-size: 90%;
}
<div class="box1">
<div class="box2">
<div class="box2_bg"></div>
</div>
</div>

你可以玩这个。

关于css - 显示内容的三 Angular 形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40909830/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com