gpt4 book ai didi

html - 如何创建多边形 div

转载 作者:太空狗 更新时间:2023-10-29 13:41:45 24 4
gpt4 key购买 nike

我想像这里的图像一样创建 HTML 元素:

Image should fill whole polygon are like this...

问题是 DIV 元素具有多边形而不是常规矩形,将像弹出窗口一样放置在其他元素之上,并且在该元素内部有必要在源中显示矩形形状的图像但在网络上显示为填充所有空格包含左侧的三 Angular 形。

您是否认为有没有可能在不以适当的多边形格式将显示图像准备为透明 PNG 的情况下实现这一点?只能通过 CSS3 转换还是使用 canvas 或 SVG?

最佳答案

一种方法是将图像分成两个容器,大小为父容器的 50%,分别变换每个容器并将背景定位为看起来像一个单一的图像。变换可以是倾斜(在答案中使用)或基于透视的旋转。

请注意,由于我们正在转换容器,因此我们必须对实际图像应用反转效果才能使其看起来正常。

.image {
position: relative;
height: 150px;
width: 450px;
overflow: hidden;
}
.top-container,
.bottom-container {
position: absolute;
left: 0px;
height: 50%;
width: 100%;
overflow: hidden;
backface-visibility: hidden;
}
.top-container {
top: 0px;
transform-origin: right bottom;
transform: skew(-20deg);
}
.bottom-container {
bottom: 0px;
transform-origin: right top;
transform: skew(20deg);
background-position: 0% 100%;
}
.top-container:after,
.bottom-container:after {
position: absolute;
content: '';
height: 100%;
width: 100%;
left: -14px; /* tan(20) * (height/2) / 2 */
background: url(http://lorempixel.com/450/150);
background-size: 100% 200%;
}
.top-container:after {
top: 0px;
transform: skew(20deg);
}
.bottom-container:after {
bottom: 0px;
transform: skew(-20deg);
background-position: 0% 100%;
}

/* Just for demo */

body {
background: linear-gradient(90deg, crimson, indianred, purple);
}
.image2 {
margin-top: 10px;
height: 150px;
width: 450px;
background: url(http://lorempixel.com/450/150);
}
<div class="image">
<div class='top-container'></div>
<div class='bottom-container'></div>
</div>


<!-- this is the actual image for comparison -->

<h3>Original Image</h3>
<div class='image2'></div>


我正要建议使用 SVG 和 clipPath 但由于 Persijn 已经发布了该示例,我在下面添加了一个带有 polygon 的不同版本。

.vector {
position: relative;
height: 150px;
width: 450px;
}
svg {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
}
polygon {
fill: url(#image);
}

/* Just for demo */

body {
background: linear-gradient(90deg, crimson, indianred, purple);
}
<div class='vector'>
<svg viewBox='0 0 450 150' preserveAspectRatio='none'>
<defs>
<pattern id='image' height='150' width='450' patternUnits='userSpaceOnUse'>
<image xlink:href='http://lorempixel.com/450/150' height='150' width='450' />
</pattern>
</defs>
<polygon points='15,0 450,0 450,150 15,150 0,75' />
</svg>
</div>

关于html - 如何创建多边形 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30368404/

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