html5用css3实现线性渐变background-image:linear-gradient使用方法


代码使用:

background-image:linear-gradient

<style>
        div {
            width: 400px;
            height: 150px;
            border: 1px solid #666;
            line-height: 150px;
            text-align: center;
            font-weight: 900;
            font-size: 30px;
            color: #fff;
            margin: 10px auto;
        }
        .gradient {
            background-image:-webkit-linear-gradient(-113deg, #8bfcfe, #64a1ff);
            background-image:linear-gradient(-113deg, #8bfcfe,  #64a1ff);
        }
        .toTop {
            background-image:-webkit-linear-gradient(to top, #8bfcfe, #64a1ff);
            background-image:linear-gradient(to top, #8bfcfe,  #64a1ff);
        }
        .toLeft{
            background-image:-webkit-linear-gradient(to left, #8bfcfe, #64a1ff);
            background-image:linear-gradient(to left, #8bfcfe,  #64a1ff);
        }
        .toRight{
            background-image:-webkit-linear-gradient(to right, #8bfcfe, #64a1ff);
            background-image:linear-gradient(to right, #8bfcfe,  #64a1ff);
        }
        .toBottom{
            background-image:-webkit-linear-gradient(to bottom, #8bfcfe, #64a1ff);
            background-image:linear-gradient(to bottom, #8bfcfe,  #64a1ff);
        }
        .toColors{
            background-image:linear-gradient(45deg,
                green 0%,
                green 25%,
                red  25%,
                red  50%,
                yellow 50%,
                yellow 75%,
                blue 75%,
                blue 100%
            );
        }

    </style>
</head>
<body>
    <div class="gradient"></div>
    <div class="toTop"></div>
    <div class="toLeft"></div>
    <div class="toRight"></div>
    <div class="toBottom"></div>
    <div class="toColors"></div>
</body>

效果如图:



  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值