编辑:这是一个没有现代化后备的工作小提琴.no-csstransition: http://jsfiddle.net/xTT5s/12/(我删除了css3缓动效果以避免与moz / chrome发生冲突)
首先,我不习惯jQuery,所以这可能是一个非常愚蠢的事情。
好吧,我正在开发一个jQuery .hover .animate,用于IE的CSS3过渡(缓和)回退。这是CSS / Jquery后备的代码:
注意:( .no-csstransitions是css3选择器的现代化后备)
section figure {
width: 220px; height: 220px;
box-shadow: 0px 0px 3px rgba(0,0,0,0.15);
overflow: hidden;
float: left;
position: relative;
margin: 0 40px 40px 0;
}
section figure figcaption {
width: 220px; height: 57px;
background: #474747;
position: absolute;
padding: 5px 0 0 10px;
top: 221px;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
section figure:hover figcaption {
margin-top: -63px;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
$(document).ready(function() {
$(".no-csstransitions figure").on({
mouseenter: function() {
$('figcaption', this).stop(true, true).animate({top: "221px"}, 300);;
},
mouseleave: function() {
$('figcaption', this).animate({top: "250px"}, 300);;
}
});
});
1º仅在第一个.hover
之后触发动画2º。悬停动画效果仅在我将顶部位置设置为MAX 219时发生,如果我放置220效果不会触发,我不知道为什么。
3º.mouseleave效果仅在一段时间后发生,figcaption闪烁到某个位置然后缓和发生...
这是我的wip的预览版:http://fernandofleury.com.br/preview/portfolio/
我将删除溢出:隐藏;所以你们可以看到它。提前谢谢!