一些小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');
posted @ 2015-05-13 19:58  还能再菜点吗?  阅读(131)  评论(0编辑  收藏  举报