home.js
1020 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
40
41
42
43
44
45
/**
* 首页
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/11/23
*/
var $ = require('yoho.jquery'),
lazyLoad = require('yoho.lazyload'),
homePage = $('.home-page').data('page'),
$data = JSON.parse($('.home-page').attr('data-newarrivls'));
require('../common/slider');
require('../common/slider2');
require('../common/logo-brand');
require('../common/accordion');
require('../common/new-arrivls')($data.url, {
pageCount: $data.pageCount,
flag: $data.flag
});
lazyLoad($('img.lazy'));
if (homePage === 'boys') {
$('.slide-container').slider({
pagination: '.thumb-pagination'
});
} else if (homePage === 'girls') {
$('.center-col').slider();
} else {
$('.slide-container').slider();
}
if (homePage === 'boys') {
$('.logo-brand').logoBrand();
$('.img-brand').slider2();
} else {
$('.logo-brand').logoBrand({
showNum: 10,
url: '/' + homePage + '/getBrand'
});
$('.img-slider-wrapper').slider2();
}