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

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

WBOY
Release: 2016-06-07 17:23:34
Original
1472 people have browsed it

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


支持IE的css渐变色设置

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


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


支持Firefox的css渐变色设置

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

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

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

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

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

<style>            
 .l</style>
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template