一个很实用的css3兼容工具很多属性可以兼容到IE6_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:46:10
Original
1124 people have browsed it

当你看到这样的效果图是不是已经崩溃了

css3没出来之前大部分人基本都是用图片的方式拼出来的

腾讯邮箱就是这么做的

然后你想和设计说换直角吧。我用图片的好烦的感觉!而且我们还要兼容到ie6

她和你说别人能做到你为啥不能

然后本人只能用曾经被遗忘的一个小插件完成了这个奇怪的东西

PIE

http://css3pie.com/documentation/pie-js/

有了pie.js,做效果再也不用考虑浏览器了(当然这句水分比较足,和金坷垃一样)

<!--[if IE]><script type="text/javascript" src="path/to/PIE.js"></script><![endif]-->
Copy after login

<!--[if lt IE 9]>  <script type="text/javascript" src="path/to/PIE_IE678.js"></script><![endif]--><!--[if IE 9]>  <script type="text/javascript" src="path/to/PIE_IE9.js"></script><![endif]-->
Copy after login

$(function() {    if (window.PIE) {        $('.rounded').each(function() {            PIE.attach(this);        });    }});
Copy after login

 

 

http://files.cnblogs.com/files/LoveOrHate/pie.rar

然后这个当初下的,貌似有2.0,大家可以去官网下下看

 

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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!