jQuery内容折叠效果插件用法实例分析(附demo源码)
来源: 阅读:762 次 日期:2016-07-06 14:08:16
温馨提示: 小编为您整理了“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="js/jquery.min.js"></script>

  <script language="javascript" type="text/javascript" src="js/jquery.coolfieldset.js"></script>

  <link rel="stylesheet" type="text/css" href="css/jquery.coolfieldset.css" />

</head>

<body>

  <h1>jQuery Collapsible Fieldset</h1>

  <br/>

  <fieldset id="fieldset1" class="coolfieldset">

    <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 id="fieldset2" class="coolfieldset">

    <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 id="fieldset4" class="coolfieldset">

    <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 id="fieldset5" class="coolfieldset">

    <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 id="fieldset3" class="coolfieldset">

    <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程序设计有所帮助。

更多信息请查看网络编程
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:
云南网警报警专用图标
Baidu
map