123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- document.addEventListener('DOMContentLoaded', function() {
- var calendarEl = document.getElementById('calendar');
- var calendar = new FullCalendar.Calendar(calendarEl, {
- height: 'auto',
- headerToolbar: { start: 'title', center: '', end: 'list,timeGridWeek,dayGridMonth,prev,next' },
- buttonText: { list:'day' },
- views: {
- dayGrid: { hiddenDays: [ 0,6,7 ] },
- timeGrid: {
- slotMinTime: '08:00:00',
- slotMaxTime: '17:00:00',
- dayHeaderFormat: { weekday: 'short' },
- hiddenDays: [ 0,6,7 ]
- },
- },
- displayEventEnd: { month: true, basicWeek: true, "default": true },
- stickyHeaderDates: false,
- firstDay : 1,
- googleCalendarApiKey: 'AIzaSyAGowGJYx6dOaQvG_vSUI73uT88VWOTcNQ',
- events: { googleCalendarId: 'davidawindham.com_bvrht1f8n2vgldgjenpgfdd4bk@group.calendar.google.com', className: 'gcal-event', displayEventEnd: true, },
- eventDataTransform: function(event) { event.url = ""; return event; },
- eventClick: function(info) { info.jsEvent.preventDefault(); }
- });
- calendar.render();
- document.getElementById('opendate').addEventListener('click', function(){
- calendar.gotoDate('2023-05-01')
- });
- });
- window.onload = function () {
- header();
- hamburger();
- parallax();
- flip();
- waypoint_init();
- waypoints();
- why();
- };
- function flip() {
- var card = document.getElementById('zw-card');
- card.classList.toggle('flip');
- }
- function header() {
- var $window = $(window),
- $smallHeader = $('.header-small'),
- smallHeaderShowing = false;
- function small_header() {
- var top = $window.scrollTop();
- if (top > 200 && !smallHeaderShowing) {
- $smallHeader.addClass('showing');
- smallHeaderShowing = true;
- }
- else if (top <= 200 && smallHeaderShowing) {
- $smallHeader.removeClass('showing');
- smallHeaderShowing = false;
- }
- };
- $window.on('scroll', function() {
- small_header();
- });
- }
- function hamburger() {
- var isOpen = false,
- $hamburger = $('.hamburger'),
- $headerSmall = $('.header-small');
- $hamburger.on('click', function () {
- isOpen = !isOpen;
- $hamburger.toggleClass('is-active');
- $headerSmall.toggleClass('menu-open');
- });
- $(window).on('scroll', function() {
- if(isOpen){
- $hamburger.removeClass('is-active');
- $headerSmall.removeClass('menu-open');
- isOpen = false;
- }
- });
- }
- function parallax() {
- var backgroundsvg = document.querySelector('#backgroundsvg');
- var backgroundsvg2 = document.querySelector('#backgroundsvg2');
- var backgroundsvg3 = document.querySelector('#backgroundsvg3');
- var xScrollPosition;
- var yScrollPosition;
- function setTranslate(xPos, yPos, el) {
- el.style.transform = "translate3d(" + xPos + ", " + yPos + "px, 0)";
- };
- function scrollLoop() {
- xScrollPosition = window.scrollX;
- yScrollPosition = window.scrollY;
- setTranslate(0, yScrollPosition * -0.2, backgroundsvg);
- setTranslate(0, yScrollPosition * -0.5, backgroundsvg2);
- setTranslate(0, yScrollPosition * -0.8, backgroundsvg3);
- requestAnimationFrame(scrollLoop);
- };
- scrollLoop();
- //window.addEventListener("DOMContentLoaded", scrollLoop, false);
- }
- function why() {
- var index = 0,
- $section = $('.testimonials-section'),
- $testimonials = $('.br-testimonial'),
- $indicators = $('.indicators'),
- interval;
- function next(goTo) {
- $testimonials.removeClass('showing');
- if (index < $testimonials.length - 1)
- index++;
- else index = 0;
- $testimonials.eq(index).addClass('showing');
- $indicators.children().eq(index).addClass('current').siblings().removeClass('current');
- }
- function start() {
- interval = setInterval(function () {
- next();
- }, 6000);
- }
- function stop() {
- clearInterval(interval);
- }
- function makeIndicators() {
- for (var i = 0; i < $testimonials.length; i++) {
- var indicator = $('<span></span>');
- if (i === 0)
- indicator.addClass('current');
- $indicators.append(indicator);
- }
- }
- function advanceNow() {
- stop();
- next();
- start();
- }
- if ($testimonials.length) {
- makeIndicators();
- start();
- $section.on('mouseenter', '.br-testimonial', function () { stop(); });
- $section.on('mouseleave', '.br-testimonial', function () { start(); });
- $indicators.on('click', 'span', function () {
- index = $(this).index() - 1;
- advanceNow();
- });
- $('.next-testimonial').on('click', function () { advanceNow(); });
- }
- }
- function waypoints() {
- var waypoints = [];
- var $window = $(window),
- $body = $('body');
- var $headerSmall = $('.header-small');
- var $pages = $('.page-view');
- var $html = $('html'), isSmallWindow;
- function removeClasses($element) {
- $element.removeClass('viewport-above viewport-below viewport-inside');
- }
- function setClass($element, className) {
- removeClasses($element);
- $element.addClass(className);
- }
- function manageSize() {
- isSmallWindow = $window.width() <= 620;
- }
- function manageBackground($element) {
- var $colorSource = $element.prev('.background-color'),
- bgClass = false, hasGradient, background, gradient;
- if ($colorSource.length) {
- bgClass = $colorSource[0].hasAttribute('data-dark-bg') ? 'dark-bg' : 'light-bg';
- background = $colorSource.css('background-color');
- $body.css('background', background);
- //$html.css('background', background);
- $body.attr('bg', bgClass);
- $headerSmall.css('color', background);
- }
- }
- function waypoint_init() {
- $pages.each(function () {
- var $this = $(this);
- var inview = new Waypoint.Inview({
- element: $this[0],
- enter: function (direction) {
- manageBackground($this);
- setClass($this, 'viewport-inside');
- },
- exited: function (direction) {
- if (direction == 'down')
- setClass($this, 'viewport-above');
- else setClass($this, 'viewport-below');
- },
- offset: {
- top: $window.height() / 2,
- bottom: $window.height() / 2
- }
- });
- waypoints.push(inview);
- });
- }
- function clearWaypoints() {
- for (var i = 0; i < waypoints.length; i++) {
- waypoints[i].destroy();
- }
- waypoints = [];
- }
- function handleWaypoints() {
- clearWaypoints();
- waypoint_init();
- }
- handleWaypoints();
- manageSize();
- $(window).on('resize', function () {
- $pages.each(function () {
- removeClasses($(this));
- });
- handleWaypoints();
- manageSize();
- });
- }
- function waypoint_init() {
- Waypoint.Inview.prototype.createWaypoints = function () {
- function outerHeight(el) {
- var height = el.offsetHeight;
- var style = getComputedStyle(el);
- height += parseInt(style.marginTop) + parseInt(style.marginBottom);
- return height;
- }
- var configs = {
- vertical: [{
- down: 'enter', up: 'exited',
- offset: function () {
- var _offset = this.options.offset && this.options.offset.bottom || 0;
- return this.options.context.innerHeight - _offset;
- }.bind(this)
- }, {
- down: 'entered', up: 'exit',
- offset: function () {
- var _offset = this.options.offset && this.options.offset.bottom || 0;
- return this.options.context.innerHeight - outerHeight(this.element) - _offset;
- }.bind(this)
- }, {
- down: 'exit', up: 'entered',
- offset: function () {
- var _offset = this.options.offset && this.options.offset.top || 0;
- return _offset;
- }.bind(this)
- }, {
- down: 'exited', up: 'enter',
- offset: function () {
- var _offset = this.options.offset && this.options.offset.top || 0;
- return _offset - outerHeight(this.element);
- }.bind(this)
- }],
- horizontal: [{
- right: 'enter',
- left: 'exited',
- offset: '100%'
- }, {
- right: 'entered',
- left: 'exit',
- offset: 'right-in-view'
- }, {
- right: 'exit',
- left: 'entered',
- offset: 0
- }, {
- right: 'exited',
- left: 'enter',
- offset: function () {
- return -this.adapter.outerWidth()
- }
- }]
- };
- for (var i = 0, end = configs[this.axis].length; i < end; i++) {
- var config = configs[this.axis][i];
- this.createWaypoint(config)
- }
- };
- $(".nav-link").hover(function(){
- $(this).tab('show');
- });
- // $.fn.scrollEnd = function (callback, timeout) {
- // $(this).scroll(function () {
- // var $this = $(this);
- // if ($this.data('scrollTimeout')) {
- // clearTimeout($this.data('scrollTimeout'));
- // }
- // $this.data('scrollTimeout', setTimeout(callback, timeout));
- // });
- // };
- }
|