nav.js
2.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
var $ = require('yoho-jquery'),
IScroll = require('yoho-iscroll');
//var WILL_BEGIN = '即将开始';
var WILL_END = '即将结束';
var ONLINE_FORECAST = '上线预告';
// nav 滚动
function initNavScroll(opt) {
var $navBox,
iScroll,
_default = {
el: '.outlet-nav'
},
options;
options = $.extend({}, _default, opt);
$navBox = $(options.el);
function scroll(index) {
var $ele;
$ele = $navBox.find('li').eq(index);
if ($ele.length > 0) {
setTimeout(function() {
iScroll.scrollToElement($ele[0], 400);
}, 1);
}
}
iScroll = new IScroll($navBox[0], {
scrollX: true,
scrollY: false,
mouseWheel: true,
scrollbars: true,
probeType: 3,
preventDefault: true,
click: true
});
return {
goto: scroll
};
}
// 获取url中的参数
function getUrlParam(name) {
var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)'); // 构造一个含有目标参数的正则表达式对象
var r = window.location.search.substr(1).match(reg); // 匹配目标参数
// 返回参数值
if (r !== null) {
return decodeURIComponent(r[2]);
} else {
return null;
}
}
// 获取创意生活和即将结束的index
function getOtherIndex() {
$('#index_nav').find('li').each(function() {
if ($(this).find('a').text() === ONLINE_FORECAST) {
$(this).attr({
'data-nav': 'other',
'data-type': 3
});
} else if ($(this).find('a').text() === WILL_END) {
$(this).attr({
'data-nav': 'other',
'data-type': 2
});
}
});
}
// 选中顶部导航
function activeNav() {
var $nav = $('#index_nav');
var index = getUrlParam('yh_channel');
getOtherIndex();
if (index === null) {
index = getUrlParam('type');
if (index === null) {
$nav.find('li:not([data-nav="other"])').eq(0).addClass('active').siblings().removeClass('active');
} else {
$nav.find('li[data-type=' + index + ']').addClass('active').siblings().removeClass('active');
}
} else {
$nav.find('li:not([data-nav="other"])').eq(index).addClass('active').siblings().removeClass('active');
}
}
activeNav();
module.exports = initNavScroll;