我将使用css transition和jquery插件作为不支持它的浏览器的后备。我想使用modernizr来检测css转换支持。为此加载整个库是过度的,我只想抓住我需要检测css转换的代码部分。在现代化的download page中,有很多选项和附加内容让我很困惑。我的问题是我应该选择哪些选项来有效地检测css过渡?
<script type="text/javascript">
// modernizr
</script>
<script type="text/javascript">
if(!Modernizr.csstransitions) {
// Use jquery if CSS transitions are not supported
}
</script>
答案 0 :(得分:7)
以下是Modernizr库中您需要的代码。它只有1kb。
;window.Modernizr=function(a,b,c){function z(a,b){var c=a.charAt(0).toUpperCase()+a.substr(1),d=(a+" "+m.join(c+" ")+c).split(" ");return y(d,b)}function y(a,b){for(var d in a)if(j[a[d]]!==c)return b=="pfx"?a[d]:!0;return!1}function x(a,b){return!!~(""+a).indexOf(b)}function w(a,b){return typeof a===b}function v(a,b){return u(prefixes.join(a+";")+(b||""))}function u(a){j.cssText=a}var d="2.0.6",e={},f=b.documentElement,g=b.head||b.getElementsByTagName("head")[0],h="modernizr",i=b.createElement(h),j=i.style,k,l=Object.prototype.toString,m="Webkit Moz O ms Khtml".split(" "),n={},o={},p={},q=[],r,s={}.hasOwnProperty,t;!w(s,c)&&!w(s.call,c)?t=function(a,b){return s.call(a,b)}:t=function(a,b){return b in a&&w(a.constructor.prototype[b],c)},n.csstransitions=function(){return z("transitionProperty")};for(var A in n)t(n,A)&&(r=A.toLowerCase(),e[r]=n[A](),q.push((e[r]?"":"no-")+r));u(""),i=k=null,e._version=d,e._domPrefixes=m,e.testProp=function(a){return y([a])},e.testAllProps=z;return e}(this,this.document);
例如,您可以使用以下代码退回并向不支持CSS3过渡的浏览器提供jQuery驱动的动画:
if (!Modernizr.csstransitions) {
$(document).ready(function(){
$(".test").hover(function () {
$(this).stop().animate({ color: "#F00" },700)
}, function() {
$(this).stop().animate({ color: "#AAA" },700)}
);
});
}
答案 1 :(得分:4)
CSS交易不存在,我认为你正在寻找CSS过渡。它位于CSS3专栏的底部。
答案 2 :(得分:4)
只需勾选CSS转换框即可。它会自动勾选右下角的几个方框,我会留下“添加CSS类”和“HTML5 Shim / IEPP”,因为它们都非常轻量级,并且很有用。