Languages selector
This commit is contained in:
parent
0e9637baa1
commit
2c21444037
5 changed files with 92 additions and 11 deletions
|
|
@ -16,6 +16,7 @@
|
|||
$( document ).ready(function() {
|
||||
init_nav();
|
||||
initBackgroundsHeader();
|
||||
init_hovers();
|
||||
});
|
||||
|
||||
//Infinite loop for change Background Header
|
||||
|
|
@ -45,4 +46,17 @@
|
|||
|
||||
}
|
||||
|
||||
function init_hovers(){
|
||||
$('.select-language').hover(function() {
|
||||
$('.drop-language').show();
|
||||
}, function() {
|
||||
$('.drop-language').hide();
|
||||
})
|
||||
$('.drop-language').hover(function() {
|
||||
$('.drop-language').show();
|
||||
}, function() {
|
||||
$('.drop-language').hide();
|
||||
})
|
||||
}
|
||||
|
||||
})(jQuery);
|
||||
Loading…
Add table
Add a link
Reference in a new issue