$(document).ready(function(){
    $(".anli").hover(
        function(){
               var $div = $(this);
               t = setInterval(function(){
                      $div.children().fadeIn(300)
               },100);
         },function(){
        clearInterval(t);
        $(this).children('div').fadeOut();
        })
})

  具体原理我没有看,我想大概就是     用hover事件,然后延迟显示,之后清楚延迟,然后隐藏

相关文章:

  • 2022-12-23
  • 2021-10-23
  • 2021-09-19
  • 2022-03-08
  • 2021-11-19
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
猜你喜欢
  • 2021-08-22
  • 2022-12-23
  • 2022-12-23
  • 2021-08-17
  • 2022-12-23
  • 2021-09-20
  • 2022-12-23
相关资源
相似解决方案