jquery简易收缩展开效果特效

来源:互联网 发布:怪物猎人4g祖龙数据 编辑:程序博客网 时间:2024/05/21 11:25
都9点多了,天气依然很炎热,睡不着啊,jquery博客整个简单jquery特效收缩展开吧。
主要代码就那点,这个只是个简单的特效,后期可以衍生很多复杂的,前端开发需要大家自己慢慢摸索,多动手,亲们慢慢折腾吧。
$(document).ready(function(){
   $(".box h1").toggle(function(){
     $(this).next(".text").animate({height: 'toggle', opacity: 'toggle'}, "slow");
   },function(){
$(this).next(".text").animate({height: 'toggle', opacity: 'toggle'}, "slow");
   });
});
在线效果DEMO


转自 jquery http://www.jqueryba.com/468.html
原创粉丝点击