area-common.js
791 Bytes
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
const $ = require('jquery');
const lazyload = require('../plugins/lazyload');
let indexObj = {
init: function () {
this.lazyLoad();
this.resizeInit();
this.resize();
},
lazyLoad: function () {
lazyload($('img.lazy'), {
threshold: 1000,
q: 80
});
},
resizeInit: function () {
let winW = $(window).width();
let $page = $('body').find('div:first');
if (winW > 1150) {
$page.addClass('widthPc');
} else {
$page.removeClass('widthPc');
}
},
resize: function () {
let _this = this;
$(window).resize(function () {
_this.resizeInit();
});
}
};
$(
function () {
indexObj.init();
}
);