forked from ColorlibHQ/AdminLTE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.js
74 lines (64 loc) · 1.69 KB
/
docs.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
/*
* Documentation JS script
*/
$(function () {
'use strict'
var $slideToTop = $('<div />')
$slideToTop.html('<i class="fa fa-chevron-up"></i>')
$slideToTop.css({
position : 'fixed',
bottom : '20px',
right : '25px',
width : '40px',
height : '40px',
color : '#eee',
'font-size' : '',
'line-height' : '40px',
'text-align' : 'center',
'background-color': '#222d32',
cursor : 'pointer',
'border-radius' : '5px',
'z-index' : '99999',
opacity : '.7',
'display' : 'none'
})
$slideToTop.on('mouseenter', function () {
$(this).css('opacity', '1')
})
$slideToTop.on('mouseout', function () {
$(this).css('opacity', '.7')
})
$('.wrapper').append($slideToTop)
$(window).scroll(function () {
if ($(window).scrollTop() >= 150) {
if (!$($slideToTop).is(':visible')) {
$($slideToTop).fadeIn(500)
}
} else {
$($slideToTop).fadeOut(500)
}
})
$($slideToTop).click(function () {
$('body').animate({
scrollTop: 0
}, 500)
})
$('.sidebar-menu li:not(.treeview) a').click(function () {
var $this = $(this)
var target = $this.attr('href')
if (typeof target === 'string') {
$('body').animate({
scrollTop: ($(target).offset().top) + 'px'
}, 500)
}
})
// Skin switcher
var currentSkin = 'skin-blue'
$('#layout-skins-list [data-skin]').click(function (e) {
e.preventDefault()
var skinName = $(this).data('skin')
$('body').removeClass(currentSkin)
$('body').addClass(skinName)
currentSkin = skinName
})
})