-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kenny Krosky
committed
Jan 2, 2019
1 parent
aaf4532
commit dfe6cd7
Showing
1 changed file
with
110 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,99 +1,115 @@ | ||
(function($) { | ||
|
||
/** | ||
* Copyright 2012, Digital Fusion | ||
* Licensed under the MIT license. | ||
* http://teamdf.com/jquery-plugins/license/ | ||
* | ||
* @author Sam Sehnert | ||
* @desc A small plugin that checks whether elements are within | ||
* the user visible viewport of a web browser. | ||
* only accounts for vertical position, not horizontal. | ||
*/ | ||
|
||
$.fn.visible = function(partial) { | ||
let $t = $(this), | ||
$w = $(window), | ||
viewTop = $w.scrollTop(), | ||
viewBottom = viewTop + $w.height(), | ||
_top = $t.offset().top, | ||
_bottom = _top + $t.height(), | ||
compareTop = partial === true ? _bottom : _top, | ||
compareBottom = partial === true ? _top : _bottom; | ||
|
||
return compareBottom <= viewBottom && compareTop >= viewTop; | ||
}; | ||
})(jQuery); | ||
|
||
/** End of Digital Fusion plugin **/ | ||
|
||
(function($) { | ||
|
||
/** | ||
* Copyright 2012, Digital Fusion | ||
* Licensed under the MIT license. | ||
* http://teamdf.com/jquery-plugins/license/ | ||
* | ||
* @author Sam Sehnert | ||
* @desc A small plugin that checks whether elements are within | ||
* the user visible viewport of a web browser. | ||
* only accounts for vertical position, not horizontal. | ||
*/ | ||
|
||
$.fn.visible = function(partial) { | ||
let $t = $(this), | ||
$w = $(window), | ||
viewTop = $w.scrollTop(), | ||
viewBottom = viewTop + $w.height(), | ||
_top = $t.offset().top, | ||
_bottom = _top + $t.height(), | ||
compareTop = partial === true ? _bottom : _top, | ||
compareBottom = partial === true ? _top : _bottom; | ||
|
||
return compareBottom <= viewBottom && compareTop >= viewTop; | ||
}; | ||
})(jQuery); | ||
|
||
/** End of Digital Fusion plugin **/ | ||
|
||
|
||
/* Animates selected elements into the page when scrolling to them */ | ||
let didScroll = false; | ||
let windowOffset = $(window).scrollTop(); | ||
let $animatedEl = $('.animateIn'); | ||
let $fadeAni = $('.fadeAni'); | ||
|
||
let userDidScroll = () => { | ||
didScroll = true; | ||
windowOffset = $(window).scrollTop(); | ||
} | ||
|
||
/* Animates selected elements into the page when scrolling to them */ | ||
|
||
$(".animateIn").each(function(i, el) { | ||
/* if the element is visible on page load */ | ||
if ($(el).visible(true)) { | ||
$(el).removeClass("animateIn"); | ||
$(el).addClass("already-visible"); | ||
} else { | ||
$(window).scroll(function(event) { | ||
$(".animateIn").each(function(i, el) { | ||
if ($(el).visible(true)) { | ||
$(el).addClass("slide-in"); | ||
} | ||
}); | ||
}); | ||
|
||
let elementSniper = () => { | ||
$animatedEl.each((i, element) => { | ||
let $t = $(element); | ||
if($t.visible(true)) { | ||
$t.addClass('slide-in'); | ||
} | ||
}) | ||
} | ||
}); | ||
|
||
$(".fadeAni").each(function(i, el) { | ||
/* if the element is visible on page load */ | ||
if ($(el).visible(true)) { | ||
$(el).removeClass("fadeAni"); | ||
$(el).addClass("already-visible"); | ||
} else { | ||
$(window).scroll(function(event) { | ||
$(".fadeAni").each(function(i, el) { | ||
if ($(el).visible(true)) { | ||
$(el).addClass("fadeInNow"); | ||
} | ||
}); | ||
}); | ||
|
||
let elementSniperFade = () => { | ||
$fadeAni.each((i, element) => { | ||
let $t = $(element); | ||
if($t.visible(true)) { | ||
$t.addClass("fadeInNow"); | ||
} | ||
}) | ||
} | ||
}); | ||
|
||
//add styling to mobile navigation | ||
|
||
$("#mobile-nav-btn").on("click", function () { | ||
if ($('.navbar-collapse').hasClass('in')) { | ||
$('.navbar-default').removeClass('on-collapse'); | ||
} else { | ||
$('.navbar-default').slideDown("slow", function () { | ||
$(this).addClass('on-collapse'); | ||
}); | ||
|
||
// check if element is in view on page load | ||
// these two functions will execute again during page scroll | ||
elementSniper(); | ||
elementSniperFade(); | ||
|
||
let scrollTicker = () => { | ||
if(didScroll) { | ||
elementSniper(); | ||
elementSniperFade(); | ||
didScroll = false; | ||
} | ||
requestAnimationFrame(scrollTicker) | ||
} | ||
}); | ||
|
||
|
||
let modal = $('#myModal'); | ||
let img = $(".myImg"); | ||
let modalImg = $("#img01"); | ||
let captionText = $("#caption"); | ||
|
||
img.on('click', function(){ | ||
modal.css('display', 'block'); | ||
modalImg.src = this.src; | ||
captionText.innerHTML = this.alt; | ||
}); | ||
|
||
// Get the <span> element that closes the modal | ||
let span = $(".close")[0]; | ||
|
||
// When the user clicks on <span> (x), close the modal | ||
span.onclick = function() { | ||
modal.css('display', 'none'); | ||
} | ||
|
||
// if ($('.navbar-collapse ul li.dropdown').hasClass('open')) { | ||
// $(".navbar-default .navbar-nav>.open>a").css("color", "#262626 !important"); | ||
// } | ||
|
||
requestAnimationFrame(scrollTicker) | ||
$(window).on('scroll', userDidScroll); | ||
|
||
|
||
|
||
//add styling to mobile navigation | ||
|
||
$("#mobile-nav-btn").on("click", function () { | ||
if ($('.navbar-collapse').hasClass('in')) { | ||
$('.navbar-default').removeClass('on-collapse'); | ||
} else { | ||
$('.navbar-default').slideDown("slow", function () { | ||
$(this).addClass('on-collapse'); | ||
}); | ||
} | ||
}); | ||
|
||
|
||
let modal = $('#myModal'); | ||
let img = $(".myImg"); | ||
let modalImg = $("#img01"); | ||
let captionText = $("#caption"); | ||
|
||
img.on('click', function(){ | ||
modal.css('display', 'block'); | ||
modalImg.src = this.src; | ||
captionText.innerHTML = this.alt; | ||
}); | ||
|
||
// Get the <span> element that closes the modal | ||
let span = $(".close")[0]; | ||
|
||
// When the user clicks on <span> (x), close the modal | ||
span.onclick = function() { | ||
modal.css('display', 'none'); | ||
} | ||
|
||
// if ($('.navbar-collapse ul li.dropdown').hasClass('open')) { | ||
// $(".navbar-default .navbar-nav>.open>a").css("color", "#262626 !important"); | ||
// } |