html – 创建水平居中的背景图像渐变三角形

前端之家收集整理的这篇文章主要介绍了html – 创建水平居中的背景图像渐变三角形前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想通过使用clip-path:polygon(…)创建一个指向css的三角形,并使用background-image:linear-gradient(…)在其上应用渐变.

这一切都很好,但我需要这个形状作为我的网页的背景.

它需要始终居中,并且需要剪切/剪切不适合浏览器窗口的左右边缘.三角形不应该重新缩放;我想保留三角形边缘的陡度,三角形的高度不应该改变:

enter image description here

如图所示,即使浏览器窗口太小而无法包含三角形,三角形也应保持相同的宽度和高度.

到目前为止,我有:

    div.main-background {
        position: absolute;
        z-index: -1;
        top: 0;
        height: 500px;
        width: 100%;
        background-image: linear-gradient(to bottom,#65AAB0,#AEE2B6);
        background-attachment: fixed;
        background-position-x: center; 
        background-size: 1400px 500px;
        clip-path: polygon(50% 80%,0 0,1400px 0);   
    }
    

但这显然是错误的.

最佳答案
你可以用SVG做到这一点

html,body {
  margin: 0
}

svg {
  width: 100%;
}
Box="0 0 1920 400" height="400" preserveAspectRatio="xMidYMax slice">
  
原文链接:https://www.f2er.com/html/425656.html

猜你在找的HTML相关文章