随笔分类 -  Jquery 插件

记录项目中运用的一些jquery插件
jquery treeview 树形插件
摘要:jquery treeview 插件参数说明treeview开源地址:https://github.com/jzaefferer/jquery-treeview1、animated:String or Number设置展开子节点时的显示速度,有 slow、normal、fast 或者指定速度值,与 jQuery 的 hide(show)中的 speed 参数相似。这里有个问题,如果使用动态的效果,这时候给人一闪一闪的感觉,如果不喜欢可以不使用这个属性就可以,这样就没有那种一闪一闪的感觉了2、persist:String记忆折叠的方式。location:页面刷新不保留折叠状态;cookie:页面 阅读全文
posted @ 2013-01-16 13:02 aking96 阅读(35909) 评论(0) 推荐(4)
JQuery开发的lightBox控件实例
摘要:官方参考地址:http://leandrovieira.com/projects/jquery/lightbox/#前台代码:<head runat="server"> <script src="http://www.cnblogs.com/Scripts/jquery-1.7.1.min.js" type="text/javascript"></script> <script src="jquery.lightbox-0.5.js" type="text/jav 阅读全文
posted @ 2013-01-15 15:25 aking96 阅读(2278) 评论(0) 推荐(0)
autocomplate类(文本输入提示下拉)
摘要:AutoComplete-JQuery参考网页:http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/简单调用参照参考网页中的Demo这里介绍从后台取数据,这需要用到ajax还有json帮助类为使插件适用FF需要在下面代码后面增加红色部分(来源于http://www.cnblogs.com/lzdblog/archive/2011/03/08/1976858.html) }).bind("unautocomplete", function() { select.unbind(); $input.unb 阅读全文
posted @ 2013-01-15 09:37 aking96 阅读(915) 评论(0) 推荐(0)
banner切换
摘要:效果图:View Code <head runat="server"> <script src="../Scripts/jquery-1.7.1.min.js" type="text/javascript"></script> <script src="../Scripts/jquery.cycle.js" type="text/javascript"></script> <title></title> < 阅读全文
posted @ 2013-01-04 14:57 aking96 阅读(395) 评论(0) 推荐(0)
Raphael 对热区的控制
摘要:JS插件的下载和教学地址raphaeljs $(function () { var R = Raphael(0, 0, 1440, 1360); x = document.getElementsByTagName('area'); for (j = 0; j < x.length; j++) { (function (s) { var c = R.path(s); c.attr({ "fill": "#fff", "fill-opa... 阅读全文
posted @ 2012-11-12 14:23 aking96 阅读(256) 评论(0) 推荐(0)
图片切换效果展示
摘要:完成后如上图所示<link href="../Styles/Web/PhotoCss.css" rel="stylesheet" type="text/css" /> <script src="/Scripts/Web/Photo.js" type="text/javascript"></script><script type="text/javascript" src="/Scripts/Web/PhotoRun.js&q 阅读全文
posted @ 2012-09-13 11:37 aking96 阅读(467) 评论(0) 推荐(0)
3.2版uploadify详细例子(含FF和IE SESSION问题)
摘要:最近做项目中碰到上传需要显示进度的问题,通过uploadfiy很好的解决了这个问题不过(IE9出现了按钮不能点击的问题,至今仍找不到良策)在使用uploadfiy3.2版本时需要下载jquery.tmpl.min.js并引用在Jquery下面 $("#uploadify").uploadify({ 'uploader': '/LZKS/Handler/BigFileUpLoadHandler.ashx', 'swf': '/LZKS/Scripts/uploadify/uploadify.swf', ' 阅读全文
posted @ 2012-09-04 18:10 aking96 阅读(26532) 评论(14) 推荐(4)