PirateIRC/www/style/js/scripts.js

31 lines
1.1 KiB
JavaScript
Raw Normal View History

2017-10-18 16:02:23 +03:00
/*-----------------------------------------------------------------------------------*/
/* MENU
/*-----------------------------------------------------------------------------------*/
ddsmoothmenu.init({
mainmenuid: "menu",
orientation: 'v',
classname: 'menu-v',
contentsource: "markup"
})
/*-----------------------------------------------------------------------------------*/
/* SIDEBAR HEIGHT
/*-----------------------------------------------------------------------------------*/
jQuery(document).ready(function($){
var h = $(document).height();
$('#sidebar').css({height: h+'px'});
});
/*-----------------------------------------------------------------------------------*/
/* HOVER
/*-----------------------------------------------------------------------------------*/
$(document).ready(function() {
$('.items .box .image, .items .box .left-side, .carousel ul li').mouseenter(function(e) {
$(this).children('a').children('span').fadeIn(200);
}).mouseleave(function(e) {
$(this).children('a').children('span').fadeOut(200);
});
2017-10-18 18:22:01 +03:00
});