mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
10 years ago
|
/*
|
||
|
* Documentation specific JS script
|
||
|
*/
|
||
|
$(function () {
|
||
|
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 a").click(function () {
|
||
|
var $this = $(this);
|
||
|
var target = $this.attr("href");
|
||
|
if (typeof target === 'string') {
|
||
|
$("body").animate({
|
||
|
scrollTop: ($(target).offset().top) + "px"
|
||
|
}, 500);
|
||
|
}
|
||
|
});
|
||
|
});
|