您的位置:首页 > Web前端 > JQuery

jquery简易收缩展开效果特效

2012-11-12 09:03 357 查看
都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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: