1 <script type="text/javascript">
 2 
 3     var BoxHeight=$('.t_c').css("height");
 4     //$('.t_c').stop().animate({'height':'10px'});
 5     $('.t_c').css('height','10px');
 6     $('#flickr_toggle').toggle(function(){
 7         alert("open");
 8         $('.t_c').stop().animate({'height':BoxHeight});
 9     },function(){
10         alert("close");
11         $('.t_c').stop().animate({'height':'10px'});
12     });
13     
14 </script>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-01
  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-09
  • 2021-08-03
  • 2022-12-23
  • 2021-09-03
  • 2021-11-15
  • 2022-12-23
  • 2021-05-07
相关资源
相似解决方案