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.
18 lines
419 B
18 lines
419 B
|
|
|
|
// left industry-bar
|
|
$(function(){
|
|
var winHeight = $(document).scrollTop();
|
|
$(window).scroll(function() {
|
|
var scrollY = $(document).scrollTop();
|
|
if (scrollY > 100){
|
|
$('.industry-bar').fadeIn();
|
|
$('.reach-bar').addClass('show')
|
|
}
|
|
else {
|
|
$('.industry-bar').fadeOut();
|
|
$('.reach-bar').removeClass('show')
|
|
}
|
|
});
|
|
});
|
|
|