网页背景渐变是经常用到的效果,下面用的滤镜,当然在非ie下是没效果的。
一、从上往下渐变
body{
filter: progid: dximagetransform.microsoft.gradient(gradienttype=0,startcolorstr=#ffffff,endcolorstr=#000000)";
}
二、从左上至右下渐变
body{
filter: alpha( style=1,opacity=25,finishopacity=100,startx=50,finishx= 100,starty=50,finishy=100); }
background-color: skyblue;
}
三、从左往右渐变
body{
filter: progid: dximagetransform.microsoft.gradient(gradienttype=1,startcolorstr=#ffffff,endcolorstr=#000000)";}