$(".list-box-item").hover(function(){
var $this = $(this);
$this.find(".cur-hover").stop(true, false).slideDown(300);
},function(){
var $this = $(this);
$this.find(".cur-hover").stop(true, false).slideUp(300);
});

相关文章:

  • 2022-01-05
  • 2022-12-23
  • 2022-01-21
  • 2021-07-20
  • 2021-10-03
  • 2022-12-23
猜你喜欢
  • 2021-06-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-06
  • 2021-07-23
相关资源
相似解决方案