美文网首页
css3中渐变及渐变需要注意的地方

css3中渐变及渐变需要注意的地方

作者: Mr夜空 | 来源:发表于2016-11-29 22:33 被阅读0次

    渐变
    //渐变中,默认从上到下渐变,前20%为纯红色,20%-50%之间为红色到蓝色渐变,50%-70%为蓝色到黄色渐变,70%以后为黄色
    <style>

    box{

            width:200px;
            height:200px;
              background:-webkit-linear-gradient(red 20%, bule 50%,yellow 70%);
    

    }
    </style>
    跳变
    //跳变中,默认从上到下,前20%为红色,20%-50%为蓝色,50%-70%为黄色,70%以后为粉色
    <style>

    box{

            width:200px;
            height:200px;
            background:-webkit-linear-gradient(red 20%,blue 20%, bule 50%,yellow 50%,yellow 70%,pink 70%);
    

    }
    </style>

    相关文章

      网友评论

          本文标题:css3中渐变及渐变需要注意的地方

          本文链接:https://www.haomeiwen.com/subject/hoezpttx.html