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

这篇文章主要介绍了jQuery内容折叠效果插件用法,结合实例形式分析了jQuery展开折叠插件jquery.coolfieldset.js的具体使用技巧,并附带demo源码供读者下载参考,需要的朋友可以参考下

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

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>jQuery Collapsible Fieldset</title> <script src="https://www.jb51.net/js/jquery.min.js"></script> <script language="javascript" type="text/javascript" src="https://www.jb51.net/js/jquery.coolfieldset.js"></script> <link type="text/css" href="https://www.jb51.net/css/jquery.coolfieldset.css" /> </head> <body> <h1>jQuery Collapsible Fieldset</h1> <br/> <fieldset> <legend>Default</legend> <div> <p>By default the <b>fieldset</b> is opened or expanded at start. Click on its <b>legend</b> to close or collapse it.</p> <p>The code is simply like below</p> <pre> $('#fieldset1').coolfieldset(); </pre> </div> </fieldset> <br/> <fieldset> <legend>Closed at start</legend> <div> <p>If we want the fieldset to be closed or collapsed at start, just add <b>{collapsed:true}</b> as the argument.</p> <pre> $('#fieldset2').coolfieldset({collapsed:true}); </pre> </div> </fieldset> <br/> <fieldset> <legend>Animation Speed</legend> <div> <p>You can also define the animation speed for the fieldset while collapsing or expanding by using <b>speed</b> option. Acceptable values are "<b>fast</b>", "<b>medium</b>", "<b>slow</b>", or a number in millisecond.</p> <pre> $('#fieldset3').coolfieldset({speed:"fast"}); </pre> </div> </fieldset> <br/> <fieldset> <legend>No Animation</legend> <div> <p>If you don't want to use animation effect, please use <b>animation</b> option and fill its value with <b>false</b>.</p> <pre> $('#fieldset4').coolfieldset({animation:false}); </pre> </div> </fieldset> <br/><br/> <fieldset> <legend>Notes :</legend> <div> <ul> <li>All content inside fieldset (except the <b>legend</b> tag) should be placed inside the <b>div</b> tag.</li> <li>Edit the <b>jquery.coolfieldset.css</b> to change the fieldset style.</li> </ul> </div> </fieldset> <script> $('#fieldset1, #fieldset3').coolfieldset(); $('#fieldset2').coolfieldset({collapsed:true}); $('#fieldset4').coolfieldset({speed:"fast"}); $('#fieldset5').coolfieldset({animation:false}); </script> </body> </html>

完整实例代码点击此处本站下载

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery切换特效与技巧总结》、《jQuery拖拽特效与技巧总结》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》、《jQuery动画与特效用法总结》、《jquery选择器用法总结》及《jQuery常用插件及用法总结

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

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzppfy.html