我的开发人员无法在此页面上创建平稳有效的过渡。请翻转徽标“Clockrun”,并注意文本在完全可见后如何变化(尤其是在 Chrome 中),以及在滚动和滚动徽标时翻转效果是多么古怪。
这是正在使用的 jQuery。有没有更好的方法可以让过渡更顺畅地淡入淡出?
jQuery(document).ready(function(){
jQuery(".super_featured_desc").css("opacity",0);
jQuery(".super_featured_logo").each(function(){
jQuery(this).hover(
function () {
jQuery(this).children(".super_featured_desc").css("display","block");
jQuery(this).children(".super_featured_desc").animate({"opacity": 1}, 400);
},
function () {
jQuery(this).children(".super_featured_desc").css("display","none");
jQuery(this).children(".super_featured_desc").animate({"opacity": 0}, 400);
}
)
});
});
</script>