• CSS3 渐变


    div{
        width: 200px;
        height: 200px;
        background-image:repeating-linear-gradient(to right, red 10%, green 20%);
    }

    渐变分为线性渐变径向渐变两种;其中:线性渐变指的是从上/下/左/右/对角方向开始的渐变,径向渐变指的是从模块的中心到周边开始的渐变

      线性渐变:

    1. 从上至下线性渐变
      div{
          width: 200px;
          height: 200px;
          background-image:linear-gradient(#e66465, #9198e5);
      }
    2. 从左至右线性渐变
      div{
          width: 200px;
          height: 200px;
          background-image:linear-gradient(to right, red, yellow);
      }
    3. 对角线性渐变
      div{
          width: 200px;
          height: 200px;
          background-image:linear-gradient(to right bottom, red, green);
      }
    4. 使用角度的线性渐变
      div{
          width: 200px;
          height: 200px;
          background-image:linear-gradient(-90deg, red,yellow);
      }
    5. 使用多个颜色节点的线性渐变
      div{
          width: 600px;
          height: 100px;
          background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
      }
    6. 使用透明度的线性渐变
      div{
          width: 200px;
          height: 200px;
          background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
      }
    7. 重复的线性渐变
      div{
          width: 200px;
          height: 200px;
          background-image:repeating-linear-gradient(to right, red 10%, green 20%);
      }

      径向渐变:

    1. 颜色节点均匀分布(默认情况下)
      div{
          width: 200px;
          height: 100px;
          background-image:radial-gradient(red, yellow,green);
      }
    2. 颜色节点不均匀分布
      div{
          width: 200px;
          height: 100px;
          background-image: radial-gradient(red 5%, yellow 15%, green 60%);
      }
    3. 设置形状——circle
      div{
          display: inline-block;
          width: 200px;
          height: 100px;
          background-image: radial-gradient(circle,red,yellow,green);
      }
    4. 设置形状——ellipse
      div{
          display: inline-block;
          width: 200px;
          height: 100px;
          background-image: radial-gradient(ellipse,red,yellow,green);
      }
    5. 重复的径向渐变
      div{
          width: 200px;
          height: 200px;
          background-image:repeating-radial-gradient(red, yellow 10%, green 15%);
      }
    6. 不同尺寸大小关键字的使用
      .one{
          width: 100px;
          height: 100px;
          background-image:radial-gradient(closest-side at 60% 55%, red, yellow, black);
      }
      .two{
          width: 100px;
          height: 100px;
          background-image:radial-gradient(farthest-side at 60% 55%, red, yellow, black);
      }
      .three{
          width: 100px;
          height: 100px;
          background-image:radial-gradient(closest-corner at 60% 55%, red, yellow, black);
      }
      .four{
          width: 100px;
          height: 100px;
          background-image:radial-gradient(farthest-corner at 60% 55%, red, yellow, black);
      }

     注:本文仅供理解,重点在于熟练使用

  • 相关阅读:
    校园WebGIS开发与实践(论文部分)
    初来博客园,请多多关照
    MIFtoTAB and TABtoMIF(MIF和TAB互转小工具)
    MIFtoSHP通用转换工具
    activity 对home 按钮事件的处理
    在XML布局文件里,会遇到的一些单位
    自己写的Adapter 无法被鼠标点中问题
    linux 下查看文件修改时间 等
    Android中使用GridView分页显示系统所安装的应用,支持拖动与手势滑动
    getLaunchIntentForPackage 获取到的为null原因
  • 原文地址:https://www.cnblogs.com/xihailong/p/11935144.html
Copyright © 2020-2023  润新知