css3对角渐变怎么写( 二 )


第四个和第五个参数,分别是两个color-stop函数 。color-stop函数接受两个参数,第一个表示渐变的位置,0为起点,0.5为中点,1为结束点;第二个表示该点的颜色 。
IE依靠滤镜实现渐变 。startColorstr表示起点的颜色,endColorstr表示终点颜色 。GradientType表示渐变类型,0为缺省值,表示垂直渐变,1表示水平渐变 。
线性渐变使用from()以及to()方法指定过渡颜色点:
background: -webkit-gradient(linear, left top, left bottom, from(#96ff00), color-stop(0.5, orange), to(rgb(255, 0, 0)));
线性渐变多个过渡点在同一位置:
background:-webkit-gradient(linear, left top, left bottom, from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00));
径向渐变综合效果演示:
5.css3渐变色怎么来实现,css3渐变色怎么写 <meta charset="UTF-8"> Document <style type="text/css"> div{ /*线性渐变*/ width:300px; height:150px; background:red; /* 一些不支持背景渐变的浏览器 */ background:-moz-linear-gradient(top, red, rgba(0, 0, 255, 0.5)); background:-webkit-gradient(linear, 0 0, 0 bottom, from(#ff0000), to(rgba(0, 0, 255, 0.5))); background:-o-linear-gradient(top, red, rgba(0, 0, 255, 0.5)); } p{ /*径向渐变*/ width:300px; height:150px; background: -webkit-radial-gradient(red, green, blue); /* Safari 5.1 - 6.0 */ background: -o-radial-gradient(red, green, blue); /* Opera 11.6 - 12.0 */ background: -moz-radial-gradient(red, green, blue); /* Firefox 3.6 - 15 */ } </style><body> 。
6.css3中有几种渐变要得上面的线性渐变效果,我们这样去定义css3样式:
background-image: -moz-linear-gradient(top, #8fa1ff, #3757fa); /* firefox */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ff4f02), color-stop(1, #8f2c00)); /* saf4+, chrome */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#c6ff00', endcolorstr='#538300', gradienttype='0'); /* ie*/
-moz-linear-gradient
有三个参数 。第一个参数表示线性渐变的方向,top是从上到下、left是从左到右,如果定义成left top,那就是从左上角到右下角 。第二个和第三个参数分别是起点颜色和终点颜色 。你还可以在它们之间插入更多的参数,表示多种颜色的渐变 。
-webkit-gradient是webkit引擎对渐变的实现参数,一共有五个 。
第一个参数表示渐变类型(type),可以是linear(线性渐变)或者radial(径向渐变) 。
第二个参数和第三个参数,都是一对值,分别表示渐变起点和终点 。这对值可以用坐标形式表示,也可以用关键值表示,比如 left top(左上角)和left bottom(左下角) 。
第四个和第五个参数,分别是两个color-stop函数 。color-stop函数接受两个参数,第一个表示渐变的位置,0为起点,0.5为中点,1为结束点;第二个表示该点的颜色 。
ie依靠滤镜实现渐变 。startcolorstr表示起点的颜色,endcolorstr表示终点颜色 。gradienttype表示渐变类型,0为缺省值,表示垂直渐变,1表示水平渐变 。
线性渐变使用from()以及to()方法指定过渡颜色点:
background: -webkit-gradient(linear, left top, left bottom, from(#96ff00), color-stop(0.5, orange), to(rgb(255, 0, 0)));
线性渐变多个过渡点在同一位置:
background:-webkit-gradient(linear, left top, left bottom, from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00));
径向渐变综合效果演示:
【css3对角渐变怎么写】

css3对角渐变怎么写

文章插图