博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gradient渐变IE兼容处理
阅读量:6438 次
发布时间:2019-06-23

本文共 1419 字,大约阅读时间需要 4 分钟。

根据caniuse(http://caniuse.com/#search=gradient),gradient兼容性为IE10以及以上浏览器。

 

 

实例代码:

1  2  3  4      5         
6 gradient 兼容性处理 7 29 30 31 32
33
34 35 36

 

chrome浏览器效果:

 

IE8浏览器效果(无渐变):

 

gradient兼容性处理:  

1 .parent { 2                 width: 400px; 3                 height: 400px; 4                 margin: 100px; 5                 font-size: 20px; 6                 color: #FF0000; 7                 border: 1px solid red; 8                 background: #000000; 9                 background: -moz-linear-gradient(top, #000000 0%, #ffffff 100%);10                 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000000), color-stop(100%, #ffffff));11                 background: -webkit-linear-gradient(top, #000000 0%, #ffffff 100%);12                 background: -o-linear-gradient(top, #000000 0%, #ffffff 100%);13                 background: -ms-linear-gradient(top, #000000 0%, #ffffff 100%);14                 background: linear-gradient(to bottom, #000000 0%, #ffffff 100%);15                 /*关键属性设置*/16                 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0);17             }

 

设置filter属性目的是上一行的透明度不起作用的时候执行,filter: progid:DXImageTransform.Microsoft.gradient是用来做渐变的,GradientType:可读写,设置或检索色彩渐变的方向:

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

总结:至此完成IE9以及以下IE浏览器gradient兼容性处理。

转载地址:http://fozwo.baihongyu.com/

你可能感兴趣的文章
linux 防火墙 iptables 允许 某个 某段 IP访问 某个端口
查看>>
Open*** 安装脚本
查看>>
计算任意两个数之间1出现的次数的思维过程
查看>>
Error No matching provisioning profiles found
查看>>
windows 2008创建群集“xxx”时出错。由于超时时间已过,该操作返回
查看>>
WinForm 入口Main方法
查看>>
SQL基础语句
查看>>
java算法2_二分查找法
查看>>
MySQL 5.6 & 5.7最优配置文件模板
查看>>
ffmpeg 怎么用
查看>>
JSP中 request.getRealPath("/xx/yy") 方法提示已经过时的替代方法
查看>>
实战 MDT 2012(六)---基于MAC地址的部署
查看>>
下载视频的一种简便方法
查看>>
C#中所有对象共同的基类是System.Object
查看>>
[鸟哥linux视频教程整理]04_02_Linux 权限及权限管理
查看>>
Linux运维工程师面试题第三套
查看>>
商务智能的需求驱动
查看>>
ThinkPad预装win8系统机型安装win7系统的操作指导
查看>>
JS高效关键字搜索---转
查看>>
PowerShell【变量篇】
查看>>