码迷,mamicode.com
首页 > Web开发 > 详细

css兼容处理

时间:2016-08-22 18:05:00      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

1、js判断浏览器是否支持css3属性


function supportCss3(style){var prefix=[‘webkit‘,‘Moz‘,‘ms‘,‘o‘],i,humpString=[],htmlStyle=document.documentElement.style,_toHumb=function(string){return string.replace(/-(\w)/g,function($0,$1){return $1.toUpperCase()})};for(i in prefix){humpString.push(_toHumb(prefix[i]+‘-‘+style));console.log(humpString)}humpString.push(_toHumb(style));for(i in humpString){if(humpString[i]in htmlStyle){return true}}return false}; console.warn(supportCss3(‘animation-fill-mode‘));

2、~~

css兼容处理

标签:

原文地址:http://www.cnblogs.com/iloveyou-sky/p/5796341.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!