animations also in contact and experience section
This commit is contained in:
32
js/index.js
Normal file
32
js/index.js
Normal file
@@ -0,0 +1,32 @@
|
||||
$(function () {
|
||||
;(function ($, win) {
|
||||
$.fn.inViewport = function (cb) {
|
||||
return this.each(function (i, el) {
|
||||
function visPx() {
|
||||
const H = $(this).height(),
|
||||
r = el.getBoundingClientRect(), t = r.top, b = r.bottom;
|
||||
return cb.call(el, Math.max(0, t > 0 ? H - t : (b < H ? b : H)));
|
||||
}
|
||||
|
||||
visPx();
|
||||
$(win).on("resize scroll", visPx);
|
||||
});
|
||||
};
|
||||
}(jQuery, window));
|
||||
|
||||
|
||||
$("#section3").inViewport(function (px) {
|
||||
if (px) {
|
||||
$("#experienceheader").addClass("animationappear600ms");
|
||||
$("#experiencecontentcontainer").addClass("animationappear300ms");
|
||||
}
|
||||
});
|
||||
|
||||
$("#section5").inViewport(function (px) {
|
||||
if (px) {
|
||||
$("#contactheader").addClass("animationappear600ms");
|
||||
$("#contactsubheader").addClass("animationappear300ms");
|
||||
$(".personalcontacts").addClass("animationappearnow");
|
||||
}
|
||||
});
|
||||
})
|
Reference in New Issue
Block a user