currencyDetail.page.js
1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
require('scss/home/coin/yoho-coin-detail.page.scss');
let $ = require('yoho-jquery'),
loading = require('js/plugin/loading'),
currencyDetailHbs = require('hbs/home/ajax-currency-detail.hbs');
let page = 1,
flag = true;
require('js/common');
function ajaxCurrencyDetail(curPage) {
loading.showLoadingMask();
flag = false;
$.ajax({
type: 'post',
url: '/home/ajaxCurrencyDetail',
dataType: 'json',
data: {
page: curPage
},
success: function(data) {
if (data.length <= 0) {
flag = false;
return false;
}
loading.hideLoadingMask();
$('.coin-detail').append(currencyDetailHbs({coinlist: data}));
flag = true;
}
});
}
function scrollHandler() {
if ($(window).scrollTop() + $(window).height() > $('body').height() - 100 && flag) {
page++;
ajaxCurrencyDetail(page);
return;
}
}
$(window).scroll(function() {
window.requestAnimationFrame(scrollHandler);
});