1:让低版本IE兼容H5标签
解决方案:引入一个插件:html5.js,(除了媒体播放器),
项目写法:
1 <!--[if lt IE 10]> 2 3 <script src="js/html5.js"></script> 4 <![endif]-->
文件下载地址:https://github.com/awarriorer/compatibilityLowVersionForIE/
2:让低版本IE兼容H5 video视频播放器
解决方案:引入一个插件,html5media.min.js同时需要把对应的flash(flowplayer.controls.swf[控制组件], flowplayer.swf[播放器])和js放在同一个目录。该插件的主要思想,把mp4通过flash插件播放出来。
文件下载地址:https://github.com/awarriorer/compatibilityLowVersionForIE/
3:低版本IE实现Css3圆角
解决方案:引入插件jquery.corner.js,本插件依托jquery。
弊端:不能用彩色的底色,只能用白色,(如果打开控制台会发现,其实是js生成了好多个div,中间透明,白色的边。可能是我理解的还不到位,也希望知情者指正)
Js下载地址:https://github.com/awarriorer/compatibilityLowVersionForIE/
插件调用Api:http://www.zhangxinxu.com/study/201001/jquery-plugin-round-corner.html
4:低版本IE支持Css3选择器,
解决方案:通过jquery选择器去弥补吧,略感鸡肋
待发现,待解决,待更新……
时间: 2024-10-18 10:34:39