Initial v2 from https://github.com/tailgrids/play-tailwind
This commit is contained in:
2
assets/js/breakpoints.min.js
vendored
2
assets/js/breakpoints.min.js
vendored
@@ -1,2 +0,0 @@
|
||||
/* breakpoints.js v1.0 | @ajlkn | MIT licensed */
|
||||
var breakpoints=function(){"use strict";function e(e){t.init(e)}var t={list:null,media:{},events:[],init:function(e){t.list=e,window.addEventListener("resize",t.poll),window.addEventListener("orientationchange",t.poll),window.addEventListener("load",t.poll),window.addEventListener("fullscreenchange",t.poll)},active:function(e){var n,a,s,i,r,d,c;if(!(e in t.media)){if(">="==e.substr(0,2)?(a="gte",n=e.substr(2)):"<="==e.substr(0,2)?(a="lte",n=e.substr(2)):">"==e.substr(0,1)?(a="gt",n=e.substr(1)):"<"==e.substr(0,1)?(a="lt",n=e.substr(1)):"!"==e.substr(0,1)?(a="not",n=e.substr(1)):(a="eq",n=e),n&&n in t.list)if(i=t.list[n],Array.isArray(i)){if(r=parseInt(i[0]),d=parseInt(i[1]),isNaN(r)){if(isNaN(d))return;c=i[1].substr(String(d).length)}else c=i[0].substr(String(r).length);if(isNaN(r))switch(a){case"gte":s="screen";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: -1px)";break;case"not":s="screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (max-width: "+d+c+")"}else if(isNaN(d))switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen";break;case"gt":s="screen and (max-width: -1px)";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+")";break;default:s="screen and (min-width: "+r+c+")"}else switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+"), screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (min-width: "+r+c+") and (max-width: "+d+c+")"}}else s="("==i.charAt(0)?"screen and "+i:i;t.media[e]=!!s&&s}return t.media[e]!==!1&&window.matchMedia(t.media[e]).matches},on:function(e,n){t.events.push({query:e,handler:n,state:!1}),t.active(e)&&n()},poll:function(){var e,n;for(e=0;e<t.events.length;e++)n=t.events[e],t.active(n.query)?n.state||(n.state=!0,n.handler()):n.state&&(n.state=!1)}};return e._=t,e.on=function(e,n){t.on(e,n)},e.active=function(e){return t.active(e)},e}();!function(e,t){"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?module.exports=t():e.breakpoints=t()}(this,function(){return breakpoints});
|
||||
2
assets/js/browser.min.js
vendored
2
assets/js/browser.min.js
vendored
@@ -1,2 +0,0 @@
|
||||
/* browser.js v1.0 | @ajlkn | MIT licensed */
|
||||
var browser=function(){"use strict";var e={name:null,version:null,os:null,osVersion:null,touch:null,mobile:null,_canUse:null,canUse:function(n){e._canUse||(e._canUse=document.createElement("div"));var o=e._canUse.style,r=n.charAt(0).toUpperCase()+n.slice(1);return n in o||"Moz"+r in o||"Webkit"+r in o||"O"+r in o||"ms"+r in o},init:function(){var n,o,r,i,t=navigator.userAgent;for(n="other",o=0,r=[["firefox",/Firefox\/([0-9\.]+)/],["bb",/BlackBerry.+Version\/([0-9\.]+)/],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/],["opera",/OPR\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)/],["edge",/Edge\/([0-9\.]+)/],["safari",/Version\/([0-9\.]+).+Safari/],["chrome",/Chrome\/([0-9\.]+)/],["ie",/MSIE ([0-9]+)/],["ie",/Trident\/.+rv:([0-9]+)/]],i=0;i<r.length;i++)if(t.match(r[i][1])){n=r[i][0],o=parseFloat(RegExp.$1);break}for(e.name=n,e.version=o,n="other",o=0,r=[["ios",/([0-9_]+) like Mac OS X/,function(e){return e.replace("_",".").replace("_","")}],["ios",/CPU like Mac OS X/,function(e){return 0}],["wp",/Windows Phone ([0-9\.]+)/,null],["android",/Android ([0-9\.]+)/,null],["mac",/Macintosh.+Mac OS X ([0-9_]+)/,function(e){return e.replace("_",".").replace("_","")}],["windows",/Windows NT ([0-9\.]+)/,null],["bb",/BlackBerry.+Version\/([0-9\.]+)/,null],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/,null],["linux",/Linux/,null],["bsd",/BSD/,null],["unix",/X11/,null]],i=0;i<r.length;i++)if(t.match(r[i][1])){n=r[i][0],o=parseFloat(r[i][2]?r[i][2](RegExp.$1):RegExp.$1);break}e.os=n,e.osVersion=o,e.touch="wp"==e.os?navigator.msMaxTouchPoints>0:!!("ontouchstart"in window),e.mobile="wp"==e.os||"android"==e.os||"ios"==e.os||"bb"==e.os}};return e.init(),e}();!function(e,n){"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?module.exports=n():e.browser=n()}(this,function(){return browser});
|
||||
2
assets/js/jquery.dropotron.min.js
vendored
2
assets/js/jquery.dropotron.min.js
vendored
File diff suppressed because one or more lines are too long
2
assets/js/jquery.min.js
vendored
2
assets/js/jquery.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,67 +1,106 @@
|
||||
/*
|
||||
ZeroFour by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
*/
|
||||
(function () {
|
||||
"use strict";
|
||||
|
||||
(function($) {
|
||||
// ======= Sticky
|
||||
window.onscroll = function () {
|
||||
const ud_header = document.querySelector(".ud-header");
|
||||
const sticky = ud_header.offsetTop;
|
||||
const logo = document.querySelector(".header-logo");
|
||||
|
||||
var $window = $(window),
|
||||
$body = $('body');
|
||||
if (window.pageYOffset > sticky) {
|
||||
ud_header.classList.add("sticky");
|
||||
} else {
|
||||
ud_header.classList.remove("sticky");
|
||||
}
|
||||
|
||||
// Breakpoints.
|
||||
breakpoints({
|
||||
xlarge: [ '1281px', '1680px' ],
|
||||
large: [ '981px', '1280px' ],
|
||||
medium: [ '737px', '980px' ],
|
||||
small: [ null, '736px' ]
|
||||
});
|
||||
// === logo change
|
||||
if (ud_header.classList.contains("sticky")) {
|
||||
logo.src = "assets/images/logo/logo.svg";
|
||||
} else {
|
||||
logo.src = "assets/images/logo/logo-white.svg";
|
||||
}
|
||||
|
||||
// Play initial animations on page load.
|
||||
$window.on('load', function() {
|
||||
window.setTimeout(function() {
|
||||
$body.removeClass('is-preload');
|
||||
}, 100);
|
||||
});
|
||||
// show or hide the back-top-top button
|
||||
const backToTop = document.querySelector(".back-to-top");
|
||||
if (
|
||||
document.body.scrollTop > 50 ||
|
||||
document.documentElement.scrollTop > 50
|
||||
) {
|
||||
backToTop.style.display = "flex";
|
||||
} else {
|
||||
backToTop.style.display = "none";
|
||||
}
|
||||
};
|
||||
|
||||
// Dropdowns.
|
||||
$('#nav > ul').dropotron({
|
||||
offsetY: -22,
|
||||
mode: 'fade',
|
||||
noOpenerFade: true,
|
||||
speed: 300,
|
||||
detach: false
|
||||
});
|
||||
// ===== responsive navbar
|
||||
let navbarToggler = document.querySelector("#navbarToggler");
|
||||
const navbarCollapse = document.querySelector("#navbarCollapse");
|
||||
|
||||
// Nav.
|
||||
navbarToggler.addEventListener("click", () => {
|
||||
navbarToggler.classList.toggle("navbarTogglerActive");
|
||||
navbarCollapse.classList.toggle("hidden");
|
||||
});
|
||||
|
||||
// Title Bar.
|
||||
$(
|
||||
'<div id="titleBar">' +
|
||||
'<a href="#navPanel" class="toggle"></a>' +
|
||||
'<span class="title">' + $('#logo').html() + '</span>' +
|
||||
'</div>'
|
||||
)
|
||||
.appendTo($body);
|
||||
//===== close navbar-collapse when a clicked
|
||||
document
|
||||
.querySelectorAll("#navbarCollapse ul li:not(.submenu-item) a")
|
||||
.forEach((e) =>
|
||||
e.addEventListener("click", () => {
|
||||
navbarToggler.classList.remove("navbarTogglerActive");
|
||||
navbarCollapse.classList.add("hidden");
|
||||
})
|
||||
);
|
||||
|
||||
// Panel.
|
||||
$(
|
||||
'<div id="navPanel">' +
|
||||
'<nav>' +
|
||||
$('#nav').navList() +
|
||||
'</nav>' +
|
||||
'</div>'
|
||||
)
|
||||
.appendTo($body)
|
||||
.panel({
|
||||
delay: 500,
|
||||
hideOnClick: true,
|
||||
hideOnSwipe: true,
|
||||
resetScroll: true,
|
||||
resetForms: true,
|
||||
side: 'left',
|
||||
target: $body,
|
||||
visibleClass: 'navPanel-visible'
|
||||
});
|
||||
// ===== Sub-menu
|
||||
const submenuItems = document.querySelectorAll(".submenu-item");
|
||||
submenuItems.forEach((el) => {
|
||||
el.querySelector("a").addEventListener("click", () => {
|
||||
el.querySelector(".submenu").classList.toggle("hidden");
|
||||
});
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
// ===== Faq accordion
|
||||
const faqs = document.querySelectorAll(".single-faq");
|
||||
faqs.forEach((el) => {
|
||||
el.querySelector(".faq-btn").addEventListener("click", () => {
|
||||
el.querySelector(".icon").classList.toggle("rotate-180");
|
||||
el.querySelector(".faq-content").classList.toggle("hidden");
|
||||
});
|
||||
});
|
||||
|
||||
// ===== wow js
|
||||
new WOW().init();
|
||||
|
||||
// ====== scroll top js
|
||||
function scrollTo(element, to = 0, duration = 500) {
|
||||
const start = element.scrollTop;
|
||||
const change = to - start;
|
||||
const increment = 20;
|
||||
let currentTime = 0;
|
||||
|
||||
const animateScroll = () => {
|
||||
currentTime += increment;
|
||||
|
||||
const val = Math.easeInOutQuad(currentTime, start, change, duration);
|
||||
|
||||
element.scrollTop = val;
|
||||
|
||||
if (currentTime < duration) {
|
||||
setTimeout(animateScroll, increment);
|
||||
}
|
||||
};
|
||||
|
||||
animateScroll();
|
||||
}
|
||||
|
||||
Math.easeInOutQuad = function (t, b, c, d) {
|
||||
t /= d / 2;
|
||||
if (t < 1) return (c / 2) * t * t + b;
|
||||
t--;
|
||||
return (-c / 2) * (t * (t - 2) - 1) + b;
|
||||
};
|
||||
|
||||
document.querySelector(".back-to-top").onclick = () => {
|
||||
scrollTo(document.documentElement);
|
||||
};
|
||||
})();
|
||||
|
||||
@@ -1,587 +0,0 @@
|
||||
(function($) {
|
||||
|
||||
/**
|
||||
* Generate an indented list of links from a nav. Meant for use with panel().
|
||||
* @return {jQuery} jQuery object.
|
||||
*/
|
||||
$.fn.navList = function() {
|
||||
|
||||
var $this = $(this);
|
||||
$a = $this.find('a'),
|
||||
b = [];
|
||||
|
||||
$a.each(function() {
|
||||
|
||||
var $this = $(this),
|
||||
indent = Math.max(0, $this.parents('li').length - 1),
|
||||
href = $this.attr('href'),
|
||||
target = $this.attr('target');
|
||||
|
||||
b.push(
|
||||
'<a ' +
|
||||
'class="link depth-' + indent + '"' +
|
||||
( (typeof target !== 'undefined' && target != '') ? ' target="' + target + '"' : '') +
|
||||
( (typeof href !== 'undefined' && href != '') ? ' href="' + href + '"' : '') +
|
||||
'>' +
|
||||
'<span class="indent-' + indent + '"></span>' +
|
||||
$this.text() +
|
||||
'</a>'
|
||||
);
|
||||
|
||||
});
|
||||
|
||||
return b.join('');
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Panel-ify an element.
|
||||
* @param {object} userConfig User config.
|
||||
* @return {jQuery} jQuery object.
|
||||
*/
|
||||
$.fn.panel = function(userConfig) {
|
||||
|
||||
// No elements?
|
||||
if (this.length == 0)
|
||||
return $this;
|
||||
|
||||
// Multiple elements?
|
||||
if (this.length > 1) {
|
||||
|
||||
for (var i=0; i < this.length; i++)
|
||||
$(this[i]).panel(userConfig);
|
||||
|
||||
return $this;
|
||||
|
||||
}
|
||||
|
||||
// Vars.
|
||||
var $this = $(this),
|
||||
$body = $('body'),
|
||||
$window = $(window),
|
||||
id = $this.attr('id'),
|
||||
config;
|
||||
|
||||
// Config.
|
||||
config = $.extend({
|
||||
|
||||
// Delay.
|
||||
delay: 0,
|
||||
|
||||
// Hide panel on link click.
|
||||
hideOnClick: false,
|
||||
|
||||
// Hide panel on escape keypress.
|
||||
hideOnEscape: false,
|
||||
|
||||
// Hide panel on swipe.
|
||||
hideOnSwipe: false,
|
||||
|
||||
// Reset scroll position on hide.
|
||||
resetScroll: false,
|
||||
|
||||
// Reset forms on hide.
|
||||
resetForms: false,
|
||||
|
||||
// Side of viewport the panel will appear.
|
||||
side: null,
|
||||
|
||||
// Target element for "class".
|
||||
target: $this,
|
||||
|
||||
// Class to toggle.
|
||||
visibleClass: 'visible'
|
||||
|
||||
}, userConfig);
|
||||
|
||||
// Expand "target" if it's not a jQuery object already.
|
||||
if (typeof config.target != 'jQuery')
|
||||
config.target = $(config.target);
|
||||
|
||||
// Panel.
|
||||
|
||||
// Methods.
|
||||
$this._hide = function(event) {
|
||||
|
||||
// Already hidden? Bail.
|
||||
if (!config.target.hasClass(config.visibleClass))
|
||||
return;
|
||||
|
||||
// If an event was provided, cancel it.
|
||||
if (event) {
|
||||
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
}
|
||||
|
||||
// Hide.
|
||||
config.target.removeClass(config.visibleClass);
|
||||
|
||||
// Post-hide stuff.
|
||||
window.setTimeout(function() {
|
||||
|
||||
// Reset scroll position.
|
||||
if (config.resetScroll)
|
||||
$this.scrollTop(0);
|
||||
|
||||
// Reset forms.
|
||||
if (config.resetForms)
|
||||
$this.find('form').each(function() {
|
||||
this.reset();
|
||||
});
|
||||
|
||||
}, config.delay);
|
||||
|
||||
};
|
||||
|
||||
// Vendor fixes.
|
||||
$this
|
||||
.css('-ms-overflow-style', '-ms-autohiding-scrollbar')
|
||||
.css('-webkit-overflow-scrolling', 'touch');
|
||||
|
||||
// Hide on click.
|
||||
if (config.hideOnClick) {
|
||||
|
||||
$this.find('a')
|
||||
.css('-webkit-tap-highlight-color', 'rgba(0,0,0,0)');
|
||||
|
||||
$this
|
||||
.on('click', 'a', function(event) {
|
||||
|
||||
var $a = $(this),
|
||||
href = $a.attr('href'),
|
||||
target = $a.attr('target');
|
||||
|
||||
if (!href || href == '#' || href == '' || href == '#' + id)
|
||||
return;
|
||||
|
||||
// Cancel original event.
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
// Hide panel.
|
||||
$this._hide();
|
||||
|
||||
// Redirect to href.
|
||||
window.setTimeout(function() {
|
||||
|
||||
if (target == '_blank')
|
||||
window.open(href);
|
||||
else
|
||||
window.location.href = href;
|
||||
|
||||
}, config.delay + 10);
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
// Event: Touch stuff.
|
||||
$this.on('touchstart', function(event) {
|
||||
|
||||
$this.touchPosX = event.originalEvent.touches[0].pageX;
|
||||
$this.touchPosY = event.originalEvent.touches[0].pageY;
|
||||
|
||||
})
|
||||
|
||||
$this.on('touchmove', function(event) {
|
||||
|
||||
if ($this.touchPosX === null
|
||||
|| $this.touchPosY === null)
|
||||
return;
|
||||
|
||||
var diffX = $this.touchPosX - event.originalEvent.touches[0].pageX,
|
||||
diffY = $this.touchPosY - event.originalEvent.touches[0].pageY,
|
||||
th = $this.outerHeight(),
|
||||
ts = ($this.get(0).scrollHeight - $this.scrollTop());
|
||||
|
||||
// Hide on swipe?
|
||||
if (config.hideOnSwipe) {
|
||||
|
||||
var result = false,
|
||||
boundary = 20,
|
||||
delta = 50;
|
||||
|
||||
switch (config.side) {
|
||||
|
||||
case 'left':
|
||||
result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX > delta);
|
||||
break;
|
||||
|
||||
case 'right':
|
||||
result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX < (-1 * delta));
|
||||
break;
|
||||
|
||||
case 'top':
|
||||
result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY > delta);
|
||||
break;
|
||||
|
||||
case 'bottom':
|
||||
result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY < (-1 * delta));
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
if (result) {
|
||||
|
||||
$this.touchPosX = null;
|
||||
$this.touchPosY = null;
|
||||
$this._hide();
|
||||
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Prevent vertical scrolling past the top or bottom.
|
||||
if (($this.scrollTop() < 0 && diffY < 0)
|
||||
|| (ts > (th - 2) && ts < (th + 2) && diffY > 0)) {
|
||||
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// Event: Prevent certain events inside the panel from bubbling.
|
||||
$this.on('click touchend touchstart touchmove', function(event) {
|
||||
event.stopPropagation();
|
||||
});
|
||||
|
||||
// Event: Hide panel if a child anchor tag pointing to its ID is clicked.
|
||||
$this.on('click', 'a[href="#' + id + '"]', function(event) {
|
||||
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
config.target.removeClass(config.visibleClass);
|
||||
|
||||
});
|
||||
|
||||
// Body.
|
||||
|
||||
// Event: Hide panel on body click/tap.
|
||||
$body.on('click touchend', function(event) {
|
||||
$this._hide(event);
|
||||
});
|
||||
|
||||
// Event: Toggle.
|
||||
$body.on('click', 'a[href="#' + id + '"]', function(event) {
|
||||
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
config.target.toggleClass(config.visibleClass);
|
||||
|
||||
});
|
||||
|
||||
// Window.
|
||||
|
||||
// Event: Hide on ESC.
|
||||
if (config.hideOnEscape)
|
||||
$window.on('keydown', function(event) {
|
||||
|
||||
if (event.keyCode == 27)
|
||||
$this._hide(event);
|
||||
|
||||
});
|
||||
|
||||
return $this;
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Apply "placeholder" attribute polyfill to one or more forms.
|
||||
* @return {jQuery} jQuery object.
|
||||
*/
|
||||
$.fn.placeholder = function() {
|
||||
|
||||
// Browser natively supports placeholders? Bail.
|
||||
if (typeof (document.createElement('input')).placeholder != 'undefined')
|
||||
return $(this);
|
||||
|
||||
// No elements?
|
||||
if (this.length == 0)
|
||||
return $this;
|
||||
|
||||
// Multiple elements?
|
||||
if (this.length > 1) {
|
||||
|
||||
for (var i=0; i < this.length; i++)
|
||||
$(this[i]).placeholder();
|
||||
|
||||
return $this;
|
||||
|
||||
}
|
||||
|
||||
// Vars.
|
||||
var $this = $(this);
|
||||
|
||||
// Text, TextArea.
|
||||
$this.find('input[type=text],textarea')
|
||||
.each(function() {
|
||||
|
||||
var i = $(this);
|
||||
|
||||
if (i.val() == ''
|
||||
|| i.val() == i.attr('placeholder'))
|
||||
i
|
||||
.addClass('polyfill-placeholder')
|
||||
.val(i.attr('placeholder'));
|
||||
|
||||
})
|
||||
.on('blur', function() {
|
||||
|
||||
var i = $(this);
|
||||
|
||||
if (i.attr('name').match(/-polyfill-field$/))
|
||||
return;
|
||||
|
||||
if (i.val() == '')
|
||||
i
|
||||
.addClass('polyfill-placeholder')
|
||||
.val(i.attr('placeholder'));
|
||||
|
||||
})
|
||||
.on('focus', function() {
|
||||
|
||||
var i = $(this);
|
||||
|
||||
if (i.attr('name').match(/-polyfill-field$/))
|
||||
return;
|
||||
|
||||
if (i.val() == i.attr('placeholder'))
|
||||
i
|
||||
.removeClass('polyfill-placeholder')
|
||||
.val('');
|
||||
|
||||
});
|
||||
|
||||
// Password.
|
||||
$this.find('input[type=password]')
|
||||
.each(function() {
|
||||
|
||||
var i = $(this);
|
||||
var x = $(
|
||||
$('<div>')
|
||||
.append(i.clone())
|
||||
.remove()
|
||||
.html()
|
||||
.replace(/type="password"/i, 'type="text"')
|
||||
.replace(/type=password/i, 'type=text')
|
||||
);
|
||||
|
||||
if (i.attr('id') != '')
|
||||
x.attr('id', i.attr('id') + '-polyfill-field');
|
||||
|
||||
if (i.attr('name') != '')
|
||||
x.attr('name', i.attr('name') + '-polyfill-field');
|
||||
|
||||
x.addClass('polyfill-placeholder')
|
||||
.val(x.attr('placeholder')).insertAfter(i);
|
||||
|
||||
if (i.val() == '')
|
||||
i.hide();
|
||||
else
|
||||
x.hide();
|
||||
|
||||
i
|
||||
.on('blur', function(event) {
|
||||
|
||||
event.preventDefault();
|
||||
|
||||
var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
|
||||
|
||||
if (i.val() == '') {
|
||||
|
||||
i.hide();
|
||||
x.show();
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
x
|
||||
.on('focus', function(event) {
|
||||
|
||||
event.preventDefault();
|
||||
|
||||
var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']');
|
||||
|
||||
x.hide();
|
||||
|
||||
i
|
||||
.show()
|
||||
.focus();
|
||||
|
||||
})
|
||||
.on('keypress', function(event) {
|
||||
|
||||
event.preventDefault();
|
||||
x.val('');
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
// Events.
|
||||
$this
|
||||
.on('submit', function() {
|
||||
|
||||
$this.find('input[type=text],input[type=password],textarea')
|
||||
.each(function(event) {
|
||||
|
||||
var i = $(this);
|
||||
|
||||
if (i.attr('name').match(/-polyfill-field$/))
|
||||
i.attr('name', '');
|
||||
|
||||
if (i.val() == i.attr('placeholder')) {
|
||||
|
||||
i.removeClass('polyfill-placeholder');
|
||||
i.val('');
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
})
|
||||
.on('reset', function(event) {
|
||||
|
||||
event.preventDefault();
|
||||
|
||||
$this.find('select')
|
||||
.val($('option:first').val());
|
||||
|
||||
$this.find('input,textarea')
|
||||
.each(function() {
|
||||
|
||||
var i = $(this),
|
||||
x;
|
||||
|
||||
i.removeClass('polyfill-placeholder');
|
||||
|
||||
switch (this.type) {
|
||||
|
||||
case 'submit':
|
||||
case 'reset':
|
||||
break;
|
||||
|
||||
case 'password':
|
||||
i.val(i.attr('defaultValue'));
|
||||
|
||||
x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
|
||||
|
||||
if (i.val() == '') {
|
||||
i.hide();
|
||||
x.show();
|
||||
}
|
||||
else {
|
||||
i.show();
|
||||
x.hide();
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case 'checkbox':
|
||||
case 'radio':
|
||||
i.attr('checked', i.attr('defaultValue'));
|
||||
break;
|
||||
|
||||
case 'text':
|
||||
case 'textarea':
|
||||
i.val(i.attr('defaultValue'));
|
||||
|
||||
if (i.val() == '') {
|
||||
i.addClass('polyfill-placeholder');
|
||||
i.val(i.attr('placeholder'));
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
i.val(i.attr('defaultValue'));
|
||||
break;
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
return $this;
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Moves elements to/from the first positions of their respective parents.
|
||||
* @param {jQuery} $elements Elements (or selector) to move.
|
||||
* @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations.
|
||||
*/
|
||||
$.prioritize = function($elements, condition) {
|
||||
|
||||
var key = '__prioritize';
|
||||
|
||||
// Expand $elements if it's not already a jQuery object.
|
||||
if (typeof $elements != 'jQuery')
|
||||
$elements = $($elements);
|
||||
|
||||
// Step through elements.
|
||||
$elements.each(function() {
|
||||
|
||||
var $e = $(this), $p,
|
||||
$parent = $e.parent();
|
||||
|
||||
// No parent? Bail.
|
||||
if ($parent.length == 0)
|
||||
return;
|
||||
|
||||
// Not moved? Move it.
|
||||
if (!$e.data(key)) {
|
||||
|
||||
// Condition is false? Bail.
|
||||
if (!condition)
|
||||
return;
|
||||
|
||||
// Get placeholder (which will serve as our point of reference for when this element needs to move back).
|
||||
$p = $e.prev();
|
||||
|
||||
// Couldn't find anything? Means this element's already at the top, so bail.
|
||||
if ($p.length == 0)
|
||||
return;
|
||||
|
||||
// Move element to top of parent.
|
||||
$e.prependTo($parent);
|
||||
|
||||
// Mark element as moved.
|
||||
$e.data(key, $p);
|
||||
|
||||
}
|
||||
|
||||
// Moved already?
|
||||
else {
|
||||
|
||||
// Condition is true? Bail.
|
||||
if (condition)
|
||||
return;
|
||||
|
||||
$p = $e.data(key);
|
||||
|
||||
// Move element back to its original location (using our placeholder).
|
||||
$e.insertAfter($p);
|
||||
|
||||
// Unmark element as moved.
|
||||
$e.removeData(key);
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
})(jQuery);
|
||||
473
assets/js/wow.min.js
vendored
Executable file
473
assets/js/wow.min.js
vendored
Executable file
@@ -0,0 +1,473 @@
|
||||
/*! WOW wow.js - v1.3.0 - 2016-10-04
|
||||
* https://wowjs.uk
|
||||
* Copyright (c) 2016 Thomas Grainger; Licensed MIT */ !(function (a, b) {
|
||||
if ("function" == typeof define && define.amd)
|
||||
define(["module", "exports"], b);
|
||||
else if ("undefined" != typeof exports) b(module, exports);
|
||||
else {
|
||||
var c = { exports: {} };
|
||||
b(c, c.exports), (a.WOW = c.exports);
|
||||
}
|
||||
})(this, function (a, b) {
|
||||
"use strict";
|
||||
function c(a, b) {
|
||||
if (!(a instanceof b))
|
||||
throw new TypeError("Cannot call a class as a function");
|
||||
}
|
||||
function d(a, b) {
|
||||
return b.indexOf(a) >= 0;
|
||||
}
|
||||
function e(a, b) {
|
||||
for (var c in b)
|
||||
if (null == a[c]) {
|
||||
var d = b[c];
|
||||
a[c] = d;
|
||||
}
|
||||
return a;
|
||||
}
|
||||
function f(a) {
|
||||
return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
|
||||
a
|
||||
);
|
||||
}
|
||||
function g(a) {
|
||||
var b =
|
||||
arguments.length <= 1 || void 0 === arguments[1] ? !1 : arguments[1],
|
||||
c = arguments.length <= 2 || void 0 === arguments[2] ? !1 : arguments[2],
|
||||
d =
|
||||
arguments.length <= 3 || void 0 === arguments[3] ? null : arguments[3],
|
||||
e = void 0;
|
||||
return (
|
||||
null != document.createEvent
|
||||
? ((e = document.createEvent("CustomEvent")),
|
||||
e.initCustomEvent(a, b, c, d))
|
||||
: null != document.createEventObject
|
||||
? ((e = document.createEventObject()), (e.eventType = a))
|
||||
: (e.eventName = a),
|
||||
e
|
||||
);
|
||||
}
|
||||
function h(a, b) {
|
||||
null != a.dispatchEvent
|
||||
? a.dispatchEvent(b)
|
||||
: b in (null != a)
|
||||
? a[b]()
|
||||
: "on" + b in (null != a) && a["on" + b]();
|
||||
}
|
||||
function i(a, b, c) {
|
||||
null != a.addEventListener
|
||||
? a.addEventListener(b, c, !1)
|
||||
: null != a.attachEvent
|
||||
? a.attachEvent("on" + b, c)
|
||||
: (a[b] = c);
|
||||
}
|
||||
function j(a, b, c) {
|
||||
null != a.removeEventListener
|
||||
? a.removeEventListener(b, c, !1)
|
||||
: null != a.detachEvent
|
||||
? a.detachEvent("on" + b, c)
|
||||
: delete a[b];
|
||||
}
|
||||
function k() {
|
||||
return "innerHeight" in window
|
||||
? window.innerHeight
|
||||
: document.documentElement.clientHeight;
|
||||
}
|
||||
Object.defineProperty(b, "__esModule", { value: !0 });
|
||||
var l,
|
||||
m,
|
||||
n = (function () {
|
||||
function a(a, b) {
|
||||
for (var c = 0; c < b.length; c++) {
|
||||
var d = b[c];
|
||||
(d.enumerable = d.enumerable || !1),
|
||||
(d.configurable = !0),
|
||||
"value" in d && (d.writable = !0),
|
||||
Object.defineProperty(a, d.key, d);
|
||||
}
|
||||
}
|
||||
return function (b, c, d) {
|
||||
return c && a(b.prototype, c), d && a(b, d), b;
|
||||
};
|
||||
})(),
|
||||
o =
|
||||
window.WeakMap ||
|
||||
window.MozWeakMap ||
|
||||
(function () {
|
||||
function a() {
|
||||
c(this, a), (this.keys = []), (this.values = []);
|
||||
}
|
||||
return (
|
||||
n(a, [
|
||||
{
|
||||
key: "get",
|
||||
value: function (a) {
|
||||
for (var b = 0; b < this.keys.length; b++) {
|
||||
var c = this.keys[b];
|
||||
if (c === a) return this.values[b];
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "set",
|
||||
value: function (a, b) {
|
||||
for (var c = 0; c < this.keys.length; c++) {
|
||||
var d = this.keys[c];
|
||||
if (d === a) return (this.values[c] = b), this;
|
||||
}
|
||||
return this.keys.push(a), this.values.push(b), this;
|
||||
},
|
||||
},
|
||||
]),
|
||||
a
|
||||
);
|
||||
})(),
|
||||
p =
|
||||
window.MutationObserver ||
|
||||
window.WebkitMutationObserver ||
|
||||
window.MozMutationObserver ||
|
||||
((m = l =
|
||||
(function () {
|
||||
function a() {
|
||||
c(this, a),
|
||||
"undefined" != typeof console &&
|
||||
null !== console &&
|
||||
(console.warn(
|
||||
"MutationObserver is not supported by your browser."
|
||||
),
|
||||
console.warn(
|
||||
"WOW.js cannot detect dom mutations, please call .sync() after loading new content."
|
||||
));
|
||||
}
|
||||
return n(a, [{ key: "observe", value: function () {} }]), a;
|
||||
})()),
|
||||
(l.notSupported = !0),
|
||||
m),
|
||||
q =
|
||||
window.getComputedStyle ||
|
||||
function (a) {
|
||||
var b = /(\-([a-z]){1})/g;
|
||||
return {
|
||||
getPropertyValue: function (c) {
|
||||
"float" === c && (c = "styleFloat"),
|
||||
b.test(c) &&
|
||||
c.replace(b, function (a, b) {
|
||||
return b.toUpperCase();
|
||||
});
|
||||
var d = a.currentStyle;
|
||||
return (null != d ? d[c] : void 0) || null;
|
||||
},
|
||||
};
|
||||
},
|
||||
r = (function () {
|
||||
function a() {
|
||||
var b =
|
||||
arguments.length <= 0 || void 0 === arguments[0] ? {} : arguments[0];
|
||||
c(this, a),
|
||||
(this.defaults = {
|
||||
boxClass: "wow",
|
||||
animateClass: "animated",
|
||||
offset: 0,
|
||||
mobile: !0,
|
||||
live: !0,
|
||||
callback: null,
|
||||
scrollContainer: null,
|
||||
resetAnimation: !0,
|
||||
}),
|
||||
(this.animate = (function () {
|
||||
return "requestAnimationFrame" in window
|
||||
? function (a) {
|
||||
return window.requestAnimationFrame(a);
|
||||
}
|
||||
: function (a) {
|
||||
return a();
|
||||
};
|
||||
})()),
|
||||
(this.vendors = ["moz", "webkit"]),
|
||||
(this.start = this.start.bind(this)),
|
||||
(this.resetAnimation = this.resetAnimation.bind(this)),
|
||||
(this.scrollHandler = this.scrollHandler.bind(this)),
|
||||
(this.scrollCallback = this.scrollCallback.bind(this)),
|
||||
(this.scrolled = !0),
|
||||
(this.config = e(b, this.defaults)),
|
||||
null != b.scrollContainer &&
|
||||
(this.config.scrollContainer = document.querySelector(
|
||||
b.scrollContainer
|
||||
)),
|
||||
(this.animationNameCache = new o()),
|
||||
(this.wowEvent = g(this.config.boxClass));
|
||||
}
|
||||
return (
|
||||
n(a, [
|
||||
{
|
||||
key: "init",
|
||||
value: function () {
|
||||
(this.element = window.document.documentElement),
|
||||
d(document.readyState, ["interactive", "complete"])
|
||||
? this.start()
|
||||
: i(document, "DOMContentLoaded", this.start),
|
||||
(this.finished = []);
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "start",
|
||||
value: function () {
|
||||
var a = this;
|
||||
if (
|
||||
((this.stopped = !1),
|
||||
(this.boxes = [].slice.call(
|
||||
this.element.querySelectorAll("." + this.config.boxClass)
|
||||
)),
|
||||
(this.all = this.boxes.slice(0)),
|
||||
this.boxes.length)
|
||||
)
|
||||
if (this.disabled()) this.resetStyle();
|
||||
else
|
||||
for (var b = 0; b < this.boxes.length; b++) {
|
||||
var c = this.boxes[b];
|
||||
this.applyStyle(c, !0);
|
||||
}
|
||||
if (
|
||||
(this.disabled() ||
|
||||
(i(
|
||||
this.config.scrollContainer || window,
|
||||
"scroll",
|
||||
this.scrollHandler
|
||||
),
|
||||
i(window, "resize", this.scrollHandler),
|
||||
(this.interval = setInterval(this.scrollCallback, 50))),
|
||||
this.config.live)
|
||||
) {
|
||||
var d = new p(function (b) {
|
||||
for (var c = 0; c < b.length; c++)
|
||||
for (var d = b[c], e = 0; e < d.addedNodes.length; e++) {
|
||||
var f = d.addedNodes[e];
|
||||
a.doSync(f);
|
||||
}
|
||||
});
|
||||
d.observe(document.body, { childList: !0, subtree: !0 });
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "stop",
|
||||
value: function () {
|
||||
(this.stopped = !0),
|
||||
j(
|
||||
this.config.scrollContainer || window,
|
||||
"scroll",
|
||||
this.scrollHandler
|
||||
),
|
||||
j(window, "resize", this.scrollHandler),
|
||||
null != this.interval && clearInterval(this.interval);
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "sync",
|
||||
value: function () {
|
||||
p.notSupported && this.doSync(this.element);
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "doSync",
|
||||
value: function (a) {
|
||||
if (
|
||||
(("undefined" != typeof a && null !== a) || (a = this.element),
|
||||
1 === a.nodeType)
|
||||
) {
|
||||
a = a.parentNode || a;
|
||||
for (
|
||||
var b = a.querySelectorAll("." + this.config.boxClass), c = 0;
|
||||
c < b.length;
|
||||
c++
|
||||
) {
|
||||
var e = b[c];
|
||||
d(e, this.all) ||
|
||||
(this.boxes.push(e),
|
||||
this.all.push(e),
|
||||
this.stopped || this.disabled()
|
||||
? this.resetStyle()
|
||||
: this.applyStyle(e, !0),
|
||||
(this.scrolled = !0));
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "show",
|
||||
value: function (a) {
|
||||
return (
|
||||
this.applyStyle(a),
|
||||
(a.className = a.className + " " + this.config.animateClass),
|
||||
null != this.config.callback && this.config.callback(a),
|
||||
h(a, this.wowEvent),
|
||||
this.config.resetAnimation &&
|
||||
(i(a, "animationend", this.resetAnimation),
|
||||
i(a, "oanimationend", this.resetAnimation),
|
||||
i(a, "webkitAnimationEnd", this.resetAnimation),
|
||||
i(a, "MSAnimationEnd", this.resetAnimation)),
|
||||
a
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "applyStyle",
|
||||
value: function (a, b) {
|
||||
var c = this,
|
||||
d = a.getAttribute("data-wow-duration"),
|
||||
e = a.getAttribute("data-wow-delay"),
|
||||
f = a.getAttribute("data-wow-iteration");
|
||||
return this.animate(function () {
|
||||
return c.customStyle(a, b, d, e, f);
|
||||
});
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "resetStyle",
|
||||
value: function () {
|
||||
for (var a = 0; a < this.boxes.length; a++) {
|
||||
var b = this.boxes[a];
|
||||
b.style.visibility = "visible";
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "resetAnimation",
|
||||
value: function (a) {
|
||||
if (a.type.toLowerCase().indexOf("animationend") >= 0) {
|
||||
var b = a.target || a.srcElement;
|
||||
b.className = b.className
|
||||
.replace(this.config.animateClass, "")
|
||||
.trim();
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "customStyle",
|
||||
value: function (a, b, c, d, e) {
|
||||
return (
|
||||
b && this.cacheAnimationName(a),
|
||||
(a.style.visibility = b ? "hidden" : "visible"),
|
||||
c && this.vendorSet(a.style, { animationDuration: c }),
|
||||
d && this.vendorSet(a.style, { animationDelay: d }),
|
||||
e && this.vendorSet(a.style, { animationIterationCount: e }),
|
||||
this.vendorSet(a.style, {
|
||||
animationName: b ? "none" : this.cachedAnimationName(a),
|
||||
}),
|
||||
a
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "vendorSet",
|
||||
value: function (a, b) {
|
||||
for (var c in b)
|
||||
if (b.hasOwnProperty(c)) {
|
||||
var d = b[c];
|
||||
a["" + c] = d;
|
||||
for (var e = 0; e < this.vendors.length; e++) {
|
||||
var f = this.vendors[e];
|
||||
a["" + f + c.charAt(0).toUpperCase() + c.substr(1)] = d;
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "vendorCSS",
|
||||
value: function (a, b) {
|
||||
for (
|
||||
var c = q(a), d = c.getPropertyCSSValue(b), e = 0;
|
||||
e < this.vendors.length;
|
||||
e++
|
||||
) {
|
||||
var f = this.vendors[e];
|
||||
d = d || c.getPropertyCSSValue("-" + f + "-" + b);
|
||||
}
|
||||
return d;
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "animationName",
|
||||
value: function (a) {
|
||||
var b = void 0;
|
||||
try {
|
||||
b = this.vendorCSS(a, "animation-name").cssText;
|
||||
} catch (c) {
|
||||
b = q(a).getPropertyValue("animation-name");
|
||||
}
|
||||
return "none" === b ? "" : b;
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "cacheAnimationName",
|
||||
value: function (a) {
|
||||
return this.animationNameCache.set(a, this.animationName(a));
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "cachedAnimationName",
|
||||
value: function (a) {
|
||||
return this.animationNameCache.get(a);
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "scrollHandler",
|
||||
value: function () {
|
||||
this.scrolled = !0;
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "scrollCallback",
|
||||
value: function () {
|
||||
if (this.scrolled) {
|
||||
this.scrolled = !1;
|
||||
for (var a = [], b = 0; b < this.boxes.length; b++) {
|
||||
var c = this.boxes[b];
|
||||
if (c) {
|
||||
if (this.isVisible(c)) {
|
||||
this.show(c);
|
||||
continue;
|
||||
}
|
||||
a.push(c);
|
||||
}
|
||||
}
|
||||
(this.boxes = a),
|
||||
this.boxes.length || this.config.live || this.stop();
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "offsetTop",
|
||||
value: function (a) {
|
||||
for (; void 0 === a.offsetTop; ) a = a.parentNode;
|
||||
for (var b = a.offsetTop; a.offsetParent; )
|
||||
(a = a.offsetParent), (b += a.offsetTop);
|
||||
return b;
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "isVisible",
|
||||
value: function (a) {
|
||||
var b = a.getAttribute("data-wow-offset") || this.config.offset,
|
||||
c =
|
||||
(this.config.scrollContainer &&
|
||||
this.config.scrollContainer.scrollTop) ||
|
||||
window.pageYOffset,
|
||||
d = c + Math.min(this.element.clientHeight, k()) - b,
|
||||
e = this.offsetTop(a),
|
||||
f = e + a.clientHeight;
|
||||
return d >= e && f >= c;
|
||||
},
|
||||
},
|
||||
{
|
||||
key: "disabled",
|
||||
value: function () {
|
||||
return !this.config.mobile && f(navigator.userAgent);
|
||||
},
|
||||
},
|
||||
]),
|
||||
a
|
||||
);
|
||||
})();
|
||||
(b["default"] = r), (a.exports = b["default"]);
|
||||
});
|
||||
Reference in New Issue
Block a user