多年来我一直对此感到困惑,但我似乎无法确定如何使 .animate 和 .fadeIn 同时发生,而不是连续发生。
所以当我尝试它时,对象会淡入,然后移动,但我很想实现这样的目标:
http://www.schoolwebsite.com/ - 例如,查看出现在页面底部悬停社交媒体图标上的工具提示
请参阅下面的我的尝试
$(".content_slider li a").hover(function () {
$(this).find('.hover_arrow').animate({
"bottom": "+=100px"
}, "fast").fadeIn('fast');
},function () {
$(this).find('div.hover_arrow').animate({
"bottom": "+=100px"
}, "fast").fadeOut('fast');
})
非常感谢任何帮助:)