2017-03-10 22:59:27 -08:00
|
|
|
// Smooth Scroll Init - Register click handler for ID anchors
|
2017-03-04 20:02:56 -08:00
|
|
|
$('a[href*="#"]:not([href="#"])').click(function () {
|
|
|
|
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
|
|
|
|
var target = $(this.hash);
|
|
|
|
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
|
|
|
|
if (target.length) {
|
2017-03-11 20:11:20 -08:00
|
|
|
var targetOffset = target.offset().top - $(".nav-bar__header").outerHeight(true);
|
|
|
|
// console.log(targetOffset, target.offset().top, $(".nav-bar__header").outerHeight())
|
2017-03-04 20:02:56 -08:00
|
|
|
$('html, body').animate({
|
2017-03-11 20:11:20 -08:00
|
|
|
scrollTop: targetOffset
|
2017-03-04 20:02:56 -08:00
|
|
|
}, 1000);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-03-12 11:05:18 -07:00
|
|
|
// navbar mobile toggle - preload
|
2017-03-10 22:59:27 -08:00
|
|
|
(function navbarInit() {
|
2017-03-04 20:02:56 -08:00
|
|
|
|
|
|
|
function toggleMobileMenu() {
|
2017-03-11 20:11:20 -08:00
|
|
|
$('.nav-bar__menu')[0].style.transition = "max-height 0.5s";
|
|
|
|
$('.nav-bar__menu')[0].classList.toggle("hide-menu");
|
2017-03-04 20:02:56 -08:00
|
|
|
}
|
2017-03-11 20:11:20 -08:00
|
|
|
$('.nav-bar__menu-button, .nav-bar__menu-item > a').click(toggleMobileMenu)
|
2017-03-04 20:02:56 -08:00
|
|
|
|
|
|
|
}());
|
2017-03-10 22:59:27 -08:00
|
|
|
|
2017-03-29 19:58:42 -07:00
|
|
|
// using an image for phone and toggle hide it
|
|
|
|
$('#cell').click(function () { $('#cell-number').toggleClass("hide"); });
|
|
|
|
// $('#phone').click(function () { alert('phone clicked'); return false; });
|
|
|
|
|
2017-03-21 08:32:26 -07:00
|
|
|
// hero resizer
|
2017-03-22 20:19:31 -07:00
|
|
|
function heroResize(bfr = 15) {
|
|
|
|
var h = $(window).height(),
|
|
|
|
w = $(window).width(),
|
|
|
|
fr = bfr * h / w
|
|
|
|
// console.log('w,h,fr', w, h, fr)
|
|
|
|
// minimum base font ratio
|
|
|
|
fr = (fr > bfr) ? bfr : fr
|
|
|
|
// adjust for short viewport height
|
|
|
|
fr = (w / h > 1 && h < 600) ? 15 * w / h : fr
|
|
|
|
//console.log('fr after', fr)
|
|
|
|
|
2017-03-21 08:32:26 -07:00
|
|
|
$('#hero').css({
|
2017-03-22 20:19:31 -07:00
|
|
|
width: w + 10,
|
|
|
|
height: h / w > 1.5 ? w * 1.5 : h,
|
|
|
|
'margin-top': $('#nav-bar').height()
|
2017-03-21 08:32:26 -07:00
|
|
|
});
|
2017-03-22 20:19:31 -07:00
|
|
|
|
2017-03-21 08:32:26 -07:00
|
|
|
$('#hero').flowtype({
|
2017-03-22 20:19:31 -07:00
|
|
|
maxFont: 50,
|
|
|
|
minFont: 18,
|
|
|
|
fontRatio: fr
|
2017-03-21 08:32:26 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// child item resize based on parent container (i.e. flexbox)
|
2017-03-14 23:20:52 -07:00
|
|
|
function itemResize(item, maxWidth = 450, widthPadding = 30) {
|
2017-03-13 12:35:41 -07:00
|
|
|
let windowWidth = $(window).width()
|
|
|
|
let width = (windowWidth > maxWidth) ? maxWidth : windowWidth - widthPadding
|
2017-03-22 20:19:31 -07:00
|
|
|
// console.log(`passed width ${width}`)
|
2017-03-14 23:20:52 -07:00
|
|
|
jQuery(item).fitToParent({
|
2017-03-12 11:05:18 -07:00
|
|
|
heightOffset: 0, // (int) Put some space around the element
|
|
|
|
// widthOffset: 5, // (int) Put some space around the element
|
|
|
|
// boxHeight: , // (int) Will look for .size-parent, or fallback to parent size
|
2017-03-14 23:20:52 -07:00
|
|
|
boxWidth: width // (int) Will look for .size-parent, or fallback to parent size
|
2017-03-21 08:32:26 -07:00
|
|
|
// callback: function (newWidth, newHeight) {}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function typeResize() {
|
|
|
|
$('.section').flowtype({
|
|
|
|
// maximum: 1000,
|
|
|
|
minFont: 12,
|
|
|
|
maxFont: 25,
|
|
|
|
fontRatio: 20
|
2017-03-12 11:05:18 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-03-21 08:32:26 -07:00
|
|
|
// Lightbox for Gallery
|
|
|
|
|
|
|
|
function lightbox(id) {
|
|
|
|
// Intialize all the media i.e. photos with "media" id
|
|
|
|
// TODO use Hugo params to initialize multiple galleries/albums
|
|
|
|
var lg = $(id).lightGallery({
|
|
|
|
thumbnail: true,
|
|
|
|
thumbWidth: 80,
|
|
|
|
controls: true,
|
|
|
|
loop: false,
|
|
|
|
download: false,
|
|
|
|
counter: true,
|
|
|
|
// videojs: true
|
|
|
|
});
|
|
|
|
|
|
|
|
lg.on('onBeforeOpen.lg', function (event) {
|
|
|
|
$('.nav-bar').css("display", "none")
|
|
|
|
});
|
|
|
|
|
|
|
|
lg.on('onCloseAfter.lg', function (event) {
|
|
|
|
$('.nav-bar').css("display", "flex")
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|