zoukankan      html  css  js  c++  java
  • CSS渐变

    线性渐变

    background: linear-gradient(0deg, rgba(255,0,0,0), rgba(255,0,0,1));

    deg:

    重复线性渐变

    background: repeating-linear-gradient(45deg,yellow 10px, green 90px);

    径向渐变

    background: radial-gradient(circle, red, yellow, green);

    circle 是圆形,ellipse 是椭圆形

    不同尺寸的径向渐变

    background: radial-gradient(closest-side at 60% 55%, red, yellow, black);
    有如下几种

    closest-side
    farthest-side
    closest-corner
    farthest-corner

    重复的径向渐变

    background: repeating-radial-gradient(red, yellow 10%, green 15%);

    边框渐变色

    直角渐变色

    border-image: -webkit-linear-gradient(red,yellow) 30 30;
    border-image: -moz-linear-gradient(red,yellow) 30 30;
    border-image: linear-gradient(red,yellow) 30 30; 

    圆角渐变色(border-image无法对圆角设置渐变,方式为在内部在建一个div以父级padding边长作为渐变)

    background-image: -webkit-linear-gradient(top, #eaa143 0%, #efba89 50%, #ffee67 90%);
    background-image: -moz-linear-gradient(top, #eaa143 0%, #efba89 50%, #ffee67 90%);
    background-image: linear-gradient(top, #eaa143 0%, #efba89 50%, #ffee67 90%);
  • 相关阅读:
    性能测试基础篇
    Jmeter参数化
    斐波那契
    Web安全 概述
    HTTP 协议详解
    echarts 响应式布局
    vue 结合mint-ui Message box的使用方法
    vue 中使用iconfont Unicode编码线上字体图标的流程
    手机端@media的屏幕适配
    @media响应式的屏幕适配
  • 原文地址:https://www.cnblogs.com/xuanjiange/p/14037648.html
Copyright © 2011-2022 走看看