网站的45度角分裂背景颜色

时间:2015-02-07 20:35:35

标签: html5 css3 background responsive-design angle

任何人都可以告诉我为响应式网站获得这样的缩放分割背景效果的最佳方法。在HTML5和CSS3中使用:Example background effect

我已经尝试过一个渐变,但得到一个锯齿状的边缘,并且在我深入了解另一种方法之前会欣赏任何想法。理想情况下必须回到IE9。

谢谢

1 个答案:

答案 0 :(得分:0)

希望这会有所帮助:http://codepen.io/ZsharE/pen/VYRPwW

<强> HTML

<div class="shape">
  <div class="top"></div>
  <div class="shape-content">
      <h1>Diagonal background</h1>
  </div>
</div>

<强> CSS

html, body {
    margin: 0px;
    padding: 0px;
}

.shape {
    width: 100%;
    margin:0 auto;
    position: relative;
    background: #468d91;
}

.shape-content {
    max-width: 1170px;
    margin:0 auto;
  padding: 200px 15px 200px 15px;
}

.shape-content h1 {
    margin: 0px;
    padding: 0px 15px;
    z-index: 9;
    position: relative;
    color: #ffffff;
    font-size: 50px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    text-shadow: 0px 2px 4px #444444;
    font-weight: 300;
}

.top {
  position: absolute;
    top: 0;
    left: 0;
  border-style:solid;
  border-color:transparent transparent #3c888b #3c888b;
  z-index: 1;
}

<强> JS

function angle() {
    var w = $(window).width();
    var h = $(".shape").height();
    $('.top').css('border-right-width', w - 3);
    $('.top').css('border-bottom-width', h - 3);
}

$(document).ready(function(){

    $(window).bind("load", function(){
        angle();
    });

    $(window).resize(function(){
        angle();
    });

});