html – 底部带有三角形的div与背景图像

前端之家收集整理的这篇文章主要介绍了html – 底部带有三角形的div与背景图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想做一个div,底部有一个三角形.
但我需要在三角形上显示背景图像,我尝试使用伪元素(:after)但它不起作用.
#homebg:after{
    content:'';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: solid 50px #fff;
    border-left: solid 48vw transparent;
    border-right: solid 48vw transparent;
}

我需要使用三角形中的背景使div显示在此图像中:

解决方法

纯色三角形

如果三角形显示为纯色,则可以使用此方法使用绝对定位的伪元素:

div{
    position:relative;
    background:url('http://i.imgur.com/W27LCzB.jpg');
    background-size:cover;
    min-height:100px;
    padding-bottom:100px;
    overflow:hidden;
}
div:after{
    content:'';
    position:absolute;
    bottom:0; left:0;
    border-left:50vw solid #fff;
    border-right:50vw solid #fff;
    border-top:100px solid transparent;
}
<div></div>

三角形的左右部分由伪元素的左右边界隐藏.这就是为什么这种方法不适用于梯度或图像的原因.

三角形图像或渐变

在这些情况下,您可以使用带有clipPathpolygon元素的内联svg:

body,html{
  height:100%;
  background:url('https://farm8.staticflickr.com/7187/6895047173_d4b1a0d798.jpg')no-repeat center center;
  background-size:cover;
}
svg{
  display:block;
  width:100%;
  }
<svg viewBox="0 0 100 40">
  <clipPath id="clip">
    <polygon points="0 0 100 0 100 25 50 40 0 25" />
  </clipPath>
  <image xlink:href="https://farm4.staticflickr.com/3165/5733278274_2626612c70.jpg"  width="100" height="65" clip-path="url(#clip)"/>
</svg>

对于相同的结果,还有其他可能的方法.你可以在这里找到一些:CSS Transparent arrow/triangle

原文链接:https://www.f2er.com/html/231318.html

猜你在找的HTML相关文章