一些小bug

1.ie6-ie8中是不支持的,需要加上下面这句话:

filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
 
2.去除虚线框

a {outline: none; /* for Forefox */ }

a {star:expression(this.onFocus=this.blur()); /* for Ie*/ }

3.jquery对css3中-webkit-transform是这样操作的。

$(".test").animate({ textIndent: 100 }, {
    step: function(now,fx) {
        $(this).css('-webkit-transform',"translate3d(0px, " + now + "px, 0px)");
    },
    duration:'slow'
},'linear');
原文地址:https://www.cnblogs.com/cainiaoz/p/4501523.html