jQuery内容折叠效果插件用法实例分析(附demo源码)

前端之家收集整理的这篇文章主要介绍了jQuery内容折叠效果插件用法实例分析(附demo源码)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了jQuery内容折叠效果插件用法分享给大家供大家参考,具体如下:

jQuery Collapsible Fieldset

jQuery Collapsible Fieldset


Default @H_301_16@

By default the fieldset is opened or expanded at start. Click on its legend to close or collapse it.

The code is simply like below

$('#fieldset1').coolfieldset();

Closed at start @H_301_16@

If we want the fieldset to be closed or collapsed at start,just add {collapsed:true} as the argument.

$('#fieldset2').coolfieldset({collapsed:true});

Animation Speed @H_301_16@

You can also define the animation speed for the fieldset while collapsing or expanding by using speed option. Acceptable values are "fast","medium","slow",or a number in millisecond.

$('#fieldset3').coolfieldset({speed:"fast"});

No Animation @H_301_16@

If you don't want to use animation effect,please use animation option and fill its value with false.

$('#fieldset4').coolfieldset({animation:false});


Notes : @H_301_16@
  • All content inside fieldset (except the legend tag) should be placed inside the div tag.
  • Edit the jquery.coolfieldset.css to change the fieldset style.

完整实例代码点击此处

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《

希望本文所述对大家jQuery程序设计有所帮助。

jQuery内容折叠效果插件插件插件

猜你在找的jQuery相关文章