1
0
Fork 0
tupali_fork/librerias/landingjs/scripts_landing.js

18 lines
427 B
JavaScript
Raw Normal View History

$(window).scroll(function() {
if ($(document).scrollTop() > 0) {
$('nav').addClass('shrink');
} else {
$('nav').removeClass('shrink');
}
});
$(window).scroll(function(){
$(".top").css("opacity", 1 - $(window).scrollTop() / 100);
});
2018-12-08 23:19:20 +00:00
2019-03-26 18:02:46 +00:00
$('.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.
});