求解读关于瀑布流加载的JS代码问题?
<script>
;(function($){
var
//参数
setting={
column_width:238,//列宽
column_className:'waterfall_column',//列的类名
column_space:10,//列间距
cell_selector:'.cell',//要排列的砖块的选择器,context为整个外部容器
img_selector:'img',//要加载的图片的选择器
auto_imgHeight:true,//是否需要自动计算图片的高度
fadein:true,//是否渐显载入
fadein_speed:600,//渐显速率,单位毫秒
insert_type:1, //单元格插入方式,1为插入最短那列,2为按序轮流插入
getResource:function(index){ } //获取动态资源函数,必须返回一个砖块元素集合,传入参数为加载的次数
},
//
waterfall=$.waterfall={},//对外信息对象
$container=null;//容器
waterfall.load_index=0, //加载次数
$.fn.extend({
waterfall:function(opt){
opt=opt||{};
setting=$.extend(setting,opt);
$container=waterfall.$container=$(this);
waterfall.$columns=creatColumn();
render($(this).find(setting.cell_selector).detach(),false); //重排已存在元素时强制不渐显
waterfall._scrollTimer2=null;
$(window).bind('scroll',function(){
clearTimeout(waterfall._scrollTimer2);
waterfall._scrollTimer2=setTimeout(onScroll,300);
});
waterfall._scrollTimer3=null;
$(window).bind('resize',function(){
clearTimeout(waterfall._scrollTimer3);
waterfall._scrollTimer3=setTimeout(onResize,300);
});
}
});
function creatColumn(){//创建列
waterfall.column_num=calculateColumns();//列数
//循环创建列
var html='';
for(var i=0;i<waterfall.column_num;i++){
html+='<div class="'+setting.column_className+'" style="width:'+setting.column_width+'px; display:inline-block; *display:inline;zoom:1; margin-left:'+setting.column_space/2+'px;margin-right:'+setting.column_space/2+'px; vertical-align:top; overflow:hidden"></div>';
}
$container.prepend(html);//插入列
return $('.'+setting.column_className,$container);//列集合
}
function calculateColumns(){//计算需要的列数
var num=Math.floor(($container.innerWidth())/(setting.column_width+setting.column_space));
if(num<1){ num=1; } //保证至少有一列
return num;
}
function render(elements,fadein){//渲染元素
if(!$(elements).length) return;//没有元素
var $columns = waterfall.$columns;
$(elements).each(function(i){
if(!setting.auto_imgHeight||setting.insert_type==2){//如果给出了图片高度,或者是按顺序插入,则不必等图片加载完就能计算列的高度了
if(setting.insert_type==1){
insert($(elements).eq(i),setting.fadein&&fadein);//插入元素
}else if(setting.insert_type==2){
insert2($(elements).eq(i),i,setting.fadein&&fadein);//插入元素
}
return true;//continue
}
if($(this)[0].nodeName.toLowerCase()=='img'||$(this).find(setting.img_selector).length>0){//本身是图片或含有图片
var image=new Image;
var src=$(this)[0].nodeName.toLowerCase()=='img'?$(this).attr('src'):$(this).find(setting.img_selector).attr('src');
image.onload=function(){//图片加载后才能自动计算出尺寸
image.onreadystatechange=null;
if(setting.insert_type==1){
insert($(elements).eq(i),setting.fadein&&fadein);//插入元素
}else if(setting.insert_type==2){
insert2($(elements).eq(i),i,setting.fadein&&fadein);//插入元素
}
image=null;
}
image.onreadystatechange=function(){//处理IE等浏览器的缓存问题:图片缓存后不会再触发onload事件
if(image.readyState == "complete"){
image.onload=null;
if(setting.insert_type==1){
insert($(elements).eq(i),setting.fadein&&fadein);//插入元素
}else if(setting.insert_type==2){
insert2($(elements).eq(i),i,setting.fadein&&fadein);//插入元素
}
image=null;
}
}
image.src=src;
}else{//不用考虑图片加载
if(setting.insert_type==1){
insert($(elements).eq(i),setting.fadein&&fadein);//插入元素
}else if(setting.insert_type==2){
insert2($(elements).eq(i),i,setting.fadein&&fadein);//插入元素
}
}
});
}
function public_render(elems){//ajax得到元素的渲染接口
render(elems,true);
}
function insert($element,fadein){//把元素插入最短列
if(fadein){//渐显
$element.css('opacity',0).appendTo(waterfall.$columns.eq(calculateLowest())).fadeTo(setting.fadein_speed,1);
}else{//不渐显
$element.appendTo(waterfall.$columns.eq(calculateLowest()));
}
}
function insert2($element,i,fadein){//按序轮流插入元素
if(fadein){//渐显
$element.css('opacity',0).appendTo(waterfall.$columns.eq(i%waterfall.column_num)).fadeTo(setting.fadein_speed,1);
}else{//不渐显
$element.appendTo(waterfall.$columns.eq(i%waterfall.column_num));
}
}
function calculateLowest(){//计算最短的那列的索引
var min=waterfall.$columns.eq(0).outerHeight(),min_key=0;
waterfall.$columns.each(function(i){
if($(this).outerHeight()<min){
min=$(this).outerHeight();
min_key=i;
}
});
return min_key;
}
function getElements(){//获取资源
$.waterfall.load_index++;
return setting.getResource($.waterfall.load_index,public_render);
}
waterfall._scrollTimer=null;//延迟滚动加载计时器
function onScroll(){//滚动加载
clearTimeout(waterfall._scrollTimer);
waterfall._scrollTimer=setTimeout(function(){
var $lowest_column=waterfall.$columns.eq(calculateLowest());//最短列
var bottom=$lowest_column.offset().top+$lowest_column.outerHeight();//最短列底部距离浏览器窗口顶部的距离
var scrollTop=document.documentElement.scrollTop||document.body.scrollTop||0;//滚动条距离
var windowHeight=document.documentElement.clientHeight||document.body.clientHeight||0;//窗口高度
if(scrollTop>=bottom-windowHeight){
render(getElements(),true);
}
},100);
}
function onResize(){//窗口缩放时重新排列
if(calculateColumns()==waterfall.column_num) return; //列数未改变,不需要重排
var $cells=waterfall.$container.find(setting.cell_selector);
waterfall.$columns.remove();
waterfall.$columns=creatColumn();
render($cells,false); //重排已有元素时强制不渐显
}
})(jQuery);
</script>
<body>
<div id="container">
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125255302.jpg" /><p>00</p></div>
<div class="cell"><img src="http://www.soopon.net/demos/publ/img/P_001.jpg" /><p>01</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125447133.jpg" /><p>02</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125523482.jpg" /><p>03</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125523457.jpg" /><p>04</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125546715.jpg" /><p>05</p></div>
<div class="cell"><img src="http://www.soopon.net/demos/publ/img/P_006.jpg" /><p>06</p></div>
<div class="cell"><img src="http://www.soopon.net/demos/publ/img/P_007.jpg" /><p>07</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125759887.jpg" /><p>08</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125822683.jpg" /><p>09</p></div>
<div class="cell"><img src="http://www.soopon.net/demos/publ/img/P_010.jpg" /><p>10</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125846384.jpg" /><p>11</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125846949.jpg" /><p>12</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125847396.jpg" /><p>13</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125847217.jpg" /><p>14</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125848795.jpg" /><p>15</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125911683.jpg" /><p>16</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125911701.jpg" /><p>17</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125912406.jpg" /><p>18</p></div>
<div class="cell"><img style="max-width: 100%;height: auto;width: auto\9;" src="//img.reader8.net/uploadfile/2014/0418/20140418125912123.jpg" /><p>19</p></div>
</div>
<div id="tip">正在加载更多奖品.....</div>
<script>
$("#tip").hide();
var opt={
getResource:function(index,render){
$("#tip").show();
var htmlobj=$.ajax({url:"index.php?app=ajax&cate_id=5&n="+index,async:false});
if(htmlobj.responseText=="")
{
{if $smarty.get.cate_id==0}
$("#tip").show();
$("#tip").html("没有更多奖品了.....");
{else}
$("#tip").hide();
{/if}
}
return $(htmlobj.responseText) ;
},
auto_imgHeight:true,
insert_type:2
}
$('#container').waterfall(opt);
</script>
这是自动加载瀑布流的方式,求懂全部代码的,如何改成点击才能加载下面的图片呢??
[解决办法]
本帖最后由 showbo 于 2014-02-12 14:52:41 编辑 function getElements() {//获取资源
$.waterfall.load_index++;
return setting.getResource($.waterfall.load_index, public_render);
}
waterfall._scrollTimer = null; //延迟滚动加载计时器
function onScroll() {//滚动加载
clearTimeout(waterfall._scrollTimer);
waterfall._scrollTimer = setTimeout(function () {
var $lowest_column = waterfall.$columns.eq(calculateLowest()); //最短列
var bottom = $lowest_column.offset().top + $lowest_column.outerHeight(); //最短列底部距离浏览器窗口顶部的距离
var scrollTop = document.documentElement.scrollTop
[解决办法]
document.body.scrollTop
[解决办法]
0; //滚动条距离
var windowHeight = document.documentElement.clientHeight
[解决办法]
document.body.clientHeight
[解决办法]
0; //窗口高度
if (scrollTop >= bottom - windowHeight) {
render(getElements(), true);
}
}, 100);
}
瀑布流就是判断滚动到一定的位置后自动调用配置的获取数据的函数,具体看上面描红的部分,要改为点击的,修改最下面那句为你的点击逻辑代码
function onScroll() {//滚动加载
clearTimeout(waterfall._scrollTimer);
waterfall._scrollTimer = setTimeout(function () {
var $lowest_column = waterfall.$columns.eq(calculateLowest()); //最短列
var bottom = $lowest_column.offset().top + $lowest_column.outerHeight(); //最短列底部距离浏览器窗口顶部的距离
var scrollTop = document.documentElement.scrollTop
[解决办法]
document.body.scrollTop
[解决办法]
0; //滚动条距离
var windowHeight = document.documentElement.clientHeight
------解决方案--------------------
document.body.clientHeight
[解决办法]
0; //窗口高度
if (scrollTop >= bottom - windowHeight) {
$(document).one('click', function () { render(getElements(), true); });//达到邻接加载点给document注册只指向一次的点击事件,点击后再加载
}
}, 100);
}
[解决办法]
直接按钮上写点击事件 onclick()