讯睿cms官方瀑布流加载方案

资源来源网络,如需授权,请更换源码,模块仅供学习,如需商用请购买正版授权,本栏目不提供技术服务,积分不够请签到!如何签到?系统升级暂停签到,恢复关注公告!
如遇下载链接蓝奏网盘打不开lanzous替换成lanzoux尝试! 广告

注意:如果开启了开发者模式,则加载完后无法显示“已经显示完了”,点击加载更多按钮也无效,关闭开发者模式即可。

滚动加载原理是当页面向下滚动时自动加载下一页数据并填充到当前页面,实现无刷新加载。

一、用于栏目列表

1、创建目标list_data.html专门用来写栏目分页循环标签的目标文件

{module catid=$catid order=updatetime page=1}
<div class=”article-list>
<a href=”{$t.url}”>
{$t.title}
</a>
</div>
{/module}

2、在list.html中标记显示容器div

<div class=”article_info” id=”content_list”>

{template “list_data.html”}

</div>

默认加载了领先页数据

3、在页面底部写加载的js

var Mpage=1;

//滚动显示更多
var scroll_get = true; //做个标志,不要反反复复的加载
$(document).ready(function () {
$(window).scroll(function () {
if (scroll_get==true && (400 + $(window).scrollTop())>($(document).height() – $(window).height())) {
scroll_get = false;
layer.msg(‘内容加截中,请稍候’,{time:1000});
dr_ajax_load_more();
}
});
});

function dr_ajax_load_more(){
Mpage++;
$.get(‘/index.php?s=api&c=api&m=template&name=list_data.html&module={MOD_DIR}&catid={$catid}&format=json&page=’+Mpage+’&’+Math.random(),function(res){
$(‘.footer-cont’).hide();
if(res.code==1){
if(res.msg==”){
layer.msg(“已经显示完了”,{time:500});
}else{
$(‘#content_list’).append(res.msg);
scroll_get = true;
}
}else{
layer.msg(res.msg,{time:2500});
}
}, ‘json’);
}

#content_list就是(2)中的容器ID

二、用于搜索页面

1、创建目标search_data.html专门用来写搜索分页循环标签的目标文件

{search module=MOD_DIR id=$searchid total=$sototal order=$params.order catid=$catid page=1 pagesize=10 urlrule=$urlrule}
<div class=”article-list>
<a href=”{$t.url}”>
{$t.title}
</a>
</div>
{/search}

2、在search.html中标记显示容器div

<div class=”article_info” id=”content_list”>

{template “search_data.html”}

</div>

默认加载了领先页数据

加载按钮

<div class=”ajax_btn margin-top-20″ id=”is_ajax_btn”>
<a href=”[removed]dr_ajax_load_more();” class=”btn default btn-block”> 加载更多 </a>
</div>

3、在页面底部写加载的js

var Mpage=1;

//滚动显示更多
var scroll_get = true; //做个标志,不要反反复复的加载
$(document).ready(function () {
$(window).scroll(function () {
if (scroll_get==true && (400 + $(window).scrollTop())>($(document).height() – $(window).height())) {
scroll_get = false;
layer.msg(‘内容加截中,请稍候’,{time:1000});
dr_ajax_load_more();
}
});
});

function dr_ajax_load_more(){
Mpage++;
$.get(‘/index.php?s=api&c=api&m=template&name=search_data.html&module={MOD_DIR}&catid={$catid}&searchid={$searchid}&sototal={$sototal}&order={$params.order}&format=json&page=’+Mpage+’&’+Math.random(),function(res){
$(‘.footer-cont’).hide();
if(res.code==1){
if(res.msg==”){
$(‘#is_ajax_btn’).hide();
layer.msg(“已经显示完了”,{time:500});
}else{
$(‘#content_list’).append(res.msg);
scroll_get = true;
}
}else{
layer.msg(res.msg,{time:2500});
}
}, ‘json’);
}

#content_list就是(2)中的容器ID

 

三、用于主站首页

1、创建目标index_data.html专门用来写搜索分页循环标签的目标文件

{module module=news page=1 pagesize=10 urlrule=index.php}
<div class=”article-list>
<a href=”{$t.url}”>
{$t.title}
</a>
</div>
{/module}

主站时需要指定module=具体模块目录

2、在index.html中标记显示容器div

<div class=”article_info” id=”content_list”>

{template “index_data.html”}

</div>

默认加载了领先页数据

3、在页面底部写加载的js

var Mpage=1;

//滚动显示更多
var scroll_get = true; //做个标志,不要反反复复的加载
$(document).ready(function () {
$(window).scroll(function () {
if (scroll_get==true && (400 + $(window).scrollTop())>($(document).height() – $(window).height())) {
scroll_get = false;
layer.msg(‘内容加截中,请稍候’,{time:1000});
dr_ajax_load_more();
}
});
});

function dr_ajax_load_more(){
Mpage++;
$.get(‘/index.php?s=api&c=api&m=template&name=index_data.html&format=json&page=’+Mpage+’&’+Math.random(),function(res){
$(‘.footer-cont’).hide();
if(res.code==1){
if(res.msg==”){
layer.msg(“已经显示完了”,{time:500});
}else{
$(‘#content_list’).append(res.msg);
scroll_get = true;
}
}else{
layer.msg(res.msg,{time:2500});
}
}, ‘json’);
}

#content_list就是(2)中的容器ID

四、用于模块首页

1、创建目标news/module_data.html专门用来写搜索分页循环标签的目标文件

{module module=MOD_DIR page=1 pagesize=10 urlrule=index.php}
<div class=”article-list>
<a href=”{$t.url}”>
{$t.title}
</a>
</div>
{/module}

 

2、在news/index.html中标记显示容器div

<div class=”article_info” id=”content_list”>

{template “module_data.html”}

</div>

默认加载了领先页数据

3、在页面底部写加载的js

var Mpage=1;

//滚动显示更多
var scroll_get = true; //做个标志,不要反反复复的加载
$(document).ready(function () {
$(window).scroll(function () {
if (scroll_get==true && (400 + $(window).scrollTop())>($(document).height() – $(window).height())) {
scroll_get = false;
layer.msg(‘内容加截中,请稍候’,{time:1000});
dr_ajax_load_more();
}
});
});

function dr_ajax_load_more(){
Mpage++;
$.get(‘/index.php?s=api&c=api&m=template&name=module_data.html&module={MOD_DIR}&format=json&page=’+Mpage+’&’+Math.random(),function(res){
$(‘.footer-cont’).hide();
if(res.code==1){
if(res.msg==”){
layer.msg(“已经显示完了”,{time:500});
}else{
$(‘#content_list’).append(res.msg);
scroll_get = true;
}
}else{
layer.msg(res.msg,{time:2500});
}
}, ‘json’);
}

#content_list就是(2)中的容器ID

 

————

题外判断,判断某个div是否滚到底部

$(document).ready(function () {

var nScrollHight = 0; //滚动距离总长(注意不是滚动条的长度)
var nScrollTop = 0; //滚动到的当前位置
var nDivHight = $(“.Main”).height();
$(“.Main”).scroll(function(){
nScrollHight = $(this)[0].scrollHeight;
nScrollTop = $(this)[0].scrollTop;
var paddingBottom = parseInt( $(this).css(‘padding-bottom’) ),paddingTop = parseInt( $(this).css(‘padding-top’) );
if(nScrollTop + paddingBottom + paddingTop + nDivHight >= nScrollHight) {
//到达底部了

}

});

});

©下载资源版权归作者所有;本站所有资源均来源于网络,仅供学习使用,请支持正版!
风格酷模板网 » 讯睿cms官方瀑布流加载方案
NOTICE:【咨询风格酷】客服QQ:1131734965
NOTICE:【咨询风格酷】客服微信:wwwxmamnet
NOTICE:【风格酷模板网②群】QQ群:288678775
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉如果源码网盘地址失效!或有其他问题,请点我报错,谢谢合作!
☉人民币与积分汇率为1比10,即1元=10积分.有任何疑问请联系客服
☉如有其他问题,请加网站客服QQ(1131734965)进行交流。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
☉源码、模板等资源会随着技术、环境的升级而存在部分问题,还请慎重选择。

发表评论

风格酷模板网www.xmam.net分享优质网站模板

立即查看 了解详情