Home >php教程 >PHP开发 >兼容主流浏览器的css渐变色

兼容主流浏览器的css渐变色

WBOY
WBOYOriginal
2016-06-07 17:23:341473browse

有的时候,为了实现一些特殊效果,需要将页面元素某块区域设置成渐变色,一般来说都是通过ps图片方法来实现,但是图片放得多了会影响网页的打开速度,本文介绍的就是用纯 CSS 实现 IE 、Firefox、Chrome 和 和Safari都支持的渐变色效果。


支持IE的css渐变色设置

FILTER: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#EEEEEE', endColorstr='#ffffff');


GradientType=0:垂直渐变,    GradientType=1:默认值,水平渐变。


支持Firefox的css渐变色设置

background:-moz-linear-gradient(top, #EEEEEE, #ffffff);/*Firefox*/

top:表示由上到下渐变,其它参数可以是left、right、bottom

支持Safari、Chrome的css渐变色设置

background:-webkit-gradient(linear, 0 0, 0 bottom, from(#EEEEEE), to(#ffffff));/*Safari 、Chrome*/

如果要兼容多种浏览器,把上面的几种综合起来,看下面例子

<style>            
 .l</style>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:WB3.1.2Next article:php面向对象编程之$this关键字