
jQuery插件
猿序程
这个作者很懒,什么都没留下…
展开
-
瀑布流主要JS代码
$(document).ready(function () { var $container = $('.list'); $container.imagesLoaded(function () { $container.masonry({ itemSelector: '.box原创 2014-12-02 22:08:24 · 694 阅读 · 0 评论 -
jQuery插件infinitescroll参数【无限翻页】
转自:http://blog.163.com/penglie_520/blog/static/19440505020127255319862/ 实现这个效果需要两个jQuery插件infinite-scroll和Masonry。 infinite-scroll-jquery 参数详解: $('#content').infinitescroll({ navSelector转载 2013-09-09 11:37:09 · 15429 阅读 · 1 评论 -
百度编辑器简版
'fullscreen', 'source', 'undo', 'redo', 'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'pasteplain', '|', 'forecolor', '原创 2014-06-11 13:33:39 · 702 阅读 · 0 评论 -
jquery的pagination无刷新分页
var pageIndex = 0; //页面索引初始值 var pageSize = 5; //每页显示条数初始化 $(function() { InitTable(0); //Load事件,初始化表格数据,页面索引为0(第一页)原创 2014-07-17 13:12:44 · 1061 阅读 · 0 评论 -
fullpage自动执行
setInterval(function () { $.fn.fullpage.moveSectionDown(); }, 3000); 方法 名称 说明 moveSectionUp() 向上滚动 moveSectionDown() 向下滚动原创 2015-10-08 16:10:49 · 1562 阅读 · 0 评论 -
pageSwitch切屏回调函数
/* 第一个参数可选值: * * before 页面切换前 * after 页面切换后 * update 页面切换中 * dragStart 开始拖拽 * dragMove 拖拽中 * dragEnd 结束拖拽 * *回调函数参数 cpage 当前页面 cp 当前页面过度百分比。cp<0说明向上切换,反之向下原创 2015-10-09 14:52:35 · 2520 阅读 · 0 评论