tupali/librerias/landingjs/scripts_landing.js

30 lines
716 B
JavaScript

$(window).scroll(function() {
if ($(document).scrollTop() > 0) {
$('nav').addClass('shrink');
} else {
$('nav').removeClass('shrink');
}
});
$(window).scroll(function(){
$(".top").css("opacity", 1 - $(window).scrollTop() / 100);
});
$('.dropdown-menu').click(function(e) {
e.stopPropagation(); //This will prevent the event from bubbling up and close the dropdown when you type/click on text boxes.
});
$(window).on('load', function() {
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
$('#div_tpaga_mobile').show();
$('#div_tpaga_desktop').hide();
}
else {
$('#div_tpaga_mobile').hide();
$('#div_tpaga_desktop').show();
}
});