-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathklorofil-common.js
89 lines (70 loc) · 1.96 KB
/
klorofil-common.js
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
"use strict"
$(window).on("load", function () {
//禁止右键点击
//禁止文字复制
//禁止鼠标拖动图片
//IE不支持
document.oncontextmenu = function () {
return false;
};
document.onselectstart = function () {
return false;
};
document.ondragstart = function () {
return false;
};
document.oncopy = function () {
return false;
};
//加载中...................
$("#loading").delay(1000).fadeIn();
$("#wrapper").delay(3000).addClass("wrapShow");
//全局分布
$(".main").css({ //右侧布的高度,相当于左侧高度
height: $("#sidebar-nav").outerHeight()
});
$(".iframe_link").on("click", function () { //左侧a链接直接导入右侧iframe
var url = $(this).attr("href");
$(".iframe_mx").attr("src", url);
return false;
});
$(".nav >li> a").click(function () { //一级导航点击后添加active
$(".nav >li >a").removeClass("active");
$(".nav >li >div").stop().slideUp();
$(this).addClass("active");
});
$(".nav-togg").click(function () { //遇二级导航点击开关
$(this).next().stop().slideToggle();
});
$(".btn-toggle-mx").click(function () { //logo旁的开关动画
$(this).toggleClass("transmx");
});
//PC和移动端响应以及经过后
$('.btn-toggle-fullwidth').on('click', function () {
if (!$('body').hasClass('layout-fullwidth')) {
$('body').addClass('layout-fullwidth');
} else {
$('body').removeClass('layout-fullwidth');
$('body').removeClass('layout-default'); // also remove default behaviour if set
}
if ($(window).innerWidth() < 1025) {
if (!$('body').hasClass('offcanvas-active')) {
$('body').addClass('offcanvas-active');
} else {
$('body').removeClass('offcanvas-active');
}
}
});
if ($('.sidebar-scroll').length > 0) {
$('.sidebar-scroll').slimScroll({
height: '98%',
wheelStep: 20,
});
}
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
});