CSS颜色渐变

百般思念 提交于 2020-01-29 05:36:16

Linear Gradients:线性渐变

  background: linear-gradient(direction, color-stop1, color-stop2, ...);

  默认是从上到下的,可以把direction改为left就为从左到右渐变

  background: linear-gradient(to left, red , blue);

  也可以left top,左上到右下

  background: linear-gradient(to left top, red , blue); 

  也可以使用角度,180度

  background: linear-gradient(180deg, red, blue);

  还有透明度的应用

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

  Radial Gradients:径向渐变

      与线性渐变一样,讲语法改一下就可以了

  background: radial-gradient(center, shape size, start-color, ..., last-color);

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!