-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.js
More file actions
1451 lines (1156 loc) · 37.1 KB
/
custom.js
File metadata and controls
1451 lines (1156 loc) · 37.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var $ = jQuery.noConflict();
localStorage['FSize']=10;
dev();
function numFormat(n, d, s) { // number format function
if (arguments.length == 2) { s = " "; }
if (arguments.length == 1) { s = " "; d = ","; }
n = n.toString();
n = n.replace(/\./g, d);
n=delThouthandSpaces(n);
a = n.split(d);
x = a[0];
y = a[1];
z = "";
if (typeof(x) != "undefined") {
for (i=x.length-1;i>=0;i--)
z += x.charAt(i);
z = z.replace(/(\d{3})/g, "$1" + s);
if (z.slice(-s.length) == s)
z = z.slice(0, -s.length);
x = "";
for (i=z.length-1;i>=0;i--)
x += z.charAt(i);
if (typeof(y) != "undefined" && y.length > 0)
x += d + y;
}
return x;
}
function delThouthandSpaces(val){
val=val.toString();
return val.replace(/ /g, '');
}
function returnMonth($periodVal){
$periodVal = $periodVal.toString();
if($periodVal==1 || ($periodVal[$periodVal.length - 1] == 1 && $periodVal != 11)){
return "місяць";
}else if(($periodVal>1 && $periodVal<5) || ($periodVal[$periodVal.length - 1] > 1 && $periodVal[$periodVal.length - 1] < 5 && $periodVal > 21)){
return "місяці";
}else{
return "місяців";
}
}
function returnYear($periodVal){
$periodVal = $periodVal.toString();
if($periodVal==1 || $periodVal[$periodVal.length - 1] == 1){
return "рiк";
}else if(($periodVal>1 && $periodVal<5) || ($periodVal[$periodVal.length - 1] > 1 && $periodVal[$periodVal.length - 1] < 5 && $periodVal > 21)){
return "роки";
}else{
return "рокiв";
}
}
(function($) {
//"use strict";
/* ============================================================
FUNCTIONS
============================================================ */
/* check for the existence of elements */
$.fn.exists = function(){return this.length>0;}
/*mobile definition*/
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
Opera: function() {
return navigator.userAgent.match(/Opera Mini/i);
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i);
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
}
};
//check mobile or desktop
function checkWindowWidth() {
var mq = window.getComputedStyle(document.querySelector('body'), '::before').getPropertyValue('content').replace(/"/g, '').replace(/'/g, "");
return ( mq == 'mobile' ) ? false : true;
}
//dropdown menu
function custom_nav_menu() {
//open/close mega-navigation
$('.dropdown-trigger').on('click', function(event){
event.preventDefault();
toggleNav();
});
//close meganavigation
$('.dropdown-nav .nav-close').on('click', function(event){
event.preventDefault();
toggleNav();
});
//on mobile - open submenu
$('.has-children').children('a').on('click', function(event){
//prevent default clicking on direct children of .has-children
if (Modernizr.touch) {
event.preventDefault();
}
var selected = $(this);
selected.next('ul').removeClass('is-hidden').end().parent('.has-children').parent('ul').addClass('move-out');
});
//on desktop - differentiate between a user trying to hover over a dropdown item vs trying to navigate into a submenu's contents
var submenuDirection = ( !$('.dropdown-wrapper').hasClass('open-to-left') ) ? 'right' : 'left';
$('.dropdown-nav-content').menuAim({
activate: function(row) {
$(row).children().addClass('is-active').removeClass('fade-out');
if( $('.dropdown-nav-content .fade-in').length == 0 ) $(row).children('ul').addClass('fade-in');
},
deactivate: function(row) {
$(row).children().removeClass('is-active');
if( $('li.has-children:hover').length == 0 || $('li.has-children:hover').is($(row)) ) {
$('.dropdown-nav-content').find('.fade-in').removeClass('fade-in');
$(row).children('ul').addClass('fade-out')
}
},
exitMenu: function() {
$('.dropdown-nav-content').find('.is-active').removeClass('is-active');
return true;
},
submenuDirection: submenuDirection,
});
//submenu items - go back link
$('.go-back').on('click', function(){
var selected = $(this),
visibleNav = $(this).parent('ul').parent('.has-children').parent('ul');
selected.parent('ul').addClass('is-hidden').parent('.has-children').parent('ul').removeClass('move-out');
});
function toggleNav(){
var navIsVisible = ( !$('.dropdown-nav').hasClass('dropdown-is-active') ) ? true : false;
$('body').toggleClass('nav-is-open', navIsVisible);
$('.dropdown-nav').toggleClass('dropdown-is-active', navIsVisible);
$('.dropdown-trigger').toggleClass('dropdown-is-active', navIsVisible);
if( !navIsVisible ) {
$('.dropdown-nav').one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend',function(){
$('.has-children ul').addClass('is-hidden');
$('.move-out').removeClass('move-out');
$('.is-active').removeClass('is-active');
});
}
}
//show department open hours
function departmentOpenHours() {
var phones = $('.list-departments li');
phones.each(function (index, el) {
$(el).click(function () {
$(this).find('.department-opening-hours-table').addClass('is-visible');
$(this).find('.department-days-table').hide();
})
});
}
departmentOpenHours();
//change this breakpoint in the master.css file (body::before)
var $search_nav = $('#site-navigation .has-form'),
$site_navigation = $('#site-navigation'),
$menu_title = $site_navigation.find('.menu-title')
$main_menu = $('#main-menu');
var $container = $('.dropdown-all').masonry({ itemSelector: 'li.has-children' });
//move .search-nav inside header on laptop
//change nav class
move_elements();
change_classes();
masonry_menu();
$( window).resize( function(){
//move_elements();
(!window.requestAnimationFrame) ? setTimeout(move_elements, 300) : window.requestAnimationFrame(move_elements);
change_classes();
masonry_menu();
});
//change class for nav desktop/mobile
function change_classes() {
var desktop = checkWindowWidth();
if( desktop /*&& $main_menu.hasClass('dropdown-nav-content')*/) {
$main_menu.removeClass('dropdown-nav-content').addClass('inline-nav-content');
$site_navigation.removeClass('dropdown-nav').addClass('inline-nav');
//$('body').removeClass('overflow-hidden');
} else {
$main_menu.removeClass('inline-nav-content').addClass('dropdown-nav-content');
$site_navigation.removeClass('inline-nav').addClass('dropdown-nav');
//$('body').removeClass('overflow-hidden');
}
}
//move search nav in DOM
function move_elements() {
var screenSize = checkWindowWidth();
if ( screenSize ) {
$search_nav.detach();
$search_nav.insertBefore('#main-menu .dropdown-all');
} else {
$search_nav.detach();
$search_nav.insertBefore('#main-menu > li:first-child');
}
}
function masonry_menu() {
var screenSize = checkWindowWidth();
if(screenSize) {
$container.masonry({ itemSelector: 'li.has-children' });
//console.log(screenSize);
} else {
$container.masonry('destroy');
}
//isActive = !isActive;
}
}
/*tabs*/
function custom_tabs() {
if ($('.tabs-container').exists()) {
var tabs = $('.tabs-container');
tabs.each(function(){
var tab = $(this),
tabItems = tab.find('ul.tabs-navigation'),
tabContentWrapper = tab.children('div.panes'),
tabNavigation = tab.find('nav');
tabItems.on('click', 'a', function(event){
event.preventDefault();
var selectedItem = $(this);
if( !selectedItem.hasClass('selected') ) {
var selectedTab = selectedItem.data('content'),
selectedContent = tabContentWrapper.find('div.pane[data-content="'+selectedTab+'"]'),
slectedContentHeight = selectedContent.innerHeight();
tabItems.find('a.selected').removeClass('selected');
selectedItem.addClass('selected');
selectedContent.addClass('selected').siblings('div.pane').removeClass('selected');
//animate tabContentWrapper height when content changes
tabContentWrapper.animate({
'height': slectedContentHeight
}, 200);
}
});
});
$(window).on('resize', function(){
tabs.each(function(){
var tab = $(this);
tab.find('div.panes').css('height', 'auto');
});
});
}
}
/*tabs select*/
function custom_tabs_select() {
if ($('.tabs-container-select').exists()) {
var tabs = $('.tabs-container-select');
tabs.each(function(){
var tab = $(this),
tabItems = tab.find('ul.tabs-nav'),
tabContentWrapper = tab.children('div.panes'),
tabNavigation = tab.find('nav'),
tabTriggerBtn = tab.find('nav').find('.placeholder a'),
currentTrigger = tabItems.find('a.selected'),
currentTriggerText = currentTrigger.html();
tabTriggerBtn.html(currentTriggerText);
tabTriggerBtn.on('click', function(event){
event.preventDefault();
var selectedItem = $(this);
selectedItem.parents('nav').toggleClass('is-active');
hideTabNav();
});
function hideTabNav() {
$(document).on('click', function(event){
if( !$(event.target).is(tabTriggerBtn)) {
tabTriggerBtn.parents('nav').removeClass('is-active');
}
});
}
tabItems.on('click', 'a', function(event){
event.preventDefault();
var selectedItem = $(this);
if( !selectedItem.hasClass('selected') ) {
var selectedTab = selectedItem.data('content'),
selectedContent = tabContentWrapper.find('div.pane[data-content="'+selectedTab+'"]'),
slectedContentHeight = selectedContent.outerHeight();
console.log(slectedContentHeight+'-'+$('.currency-rate-section>.content').innerHeight());
tabItems.find('a.selected').removeClass('selected');
selectedItem.addClass('selected');
selectedContent.addClass('selected').siblings('div.pane').removeClass('selected');
//change text in placeholder
tabTriggerBtn.html(selectedItem.html());
if($('.currency-rate-section>.content').innerHeight() < slectedContentHeight+20)
bottPadding='; padding-bottom: 20px;';
//animate tabContentWrapper height when content changes
tabContentWrapper.animate({
'height': slectedContentHeight+bottPadding
}, 200);
}
});
});
$(window).on('resize', function(){
tabs.each(function(){
var tab = $(this);
tab.find('div.panes').css('height', 'auto');
});
});
}
}
//move currency nav in DOM
/*function currency_nav() {
if ($('.currency-rate-section').exists()) {
var $currencyNav = $('.currency-rate-section .tabs-container-select').find('nav');
$(window).on('load', function(){
$currencyNav.detach();
$currencyNav.insertBefore('.currency-rate-section div.panes');
});
}
}*/
//accordion
function custom_accordion() {
if ($('.accordion').exists()) {
function close_accordion_item() {
$('.accordion .accordion-item-title').removeClass('is-active');
$('.accordion .accordion-item-content').slideUp(300);
}
$('.accordion-item-title').click(function(e) {
// Grab current anchor value
e.preventDefault();
if($(e.target).is('.is-active')) {
close_accordion_item();
} else {
close_accordion_item();
// Add active class to section title
$(this).addClass('is-active');
// Open up the hidden content panel
$(this).next('.accordion-item-content').slideDown(300);
}
});
} //end if
}
//font size change
function change_fontSize() {
var smaller = $('.font-switcher').find('a.smaller-trigger'),
bigger = $('.font-switcher').find('a.bigger-trigger'),
$body = $('body');
/*
function change_size(element, size) {
var current = parseInt(element.css('font-size'));
if(size = 'smaller') {
var new_size = current - 2;
} else if(size = 'bigger') {
var new_size = current + 2;
}
element.css('font-size', new_size + 'px');
}
*/
smaller.click( function(event) {
if(parseInt($('html').css('font-size'))>10){
event.preventDefault();
//change_size($body, 'smaller')
$('html').css('font-size', '-=2');
localStorage['FSizePX']=$('html').css('font-size');
}
});
bigger.click( function(event) {
if(parseInt($('html').css('font-size'))<22){
event.preventDefault();
//change_size($body, 'smaller')
$('html').css('font-size', '+=2');
localStorage['FSizePX']=$('html').css('font-size');
}
});
}
//custom popup
function custom_popup() {
//open popup
$('.popup-trigger').on('click', function(event){
var triggerBtn = $(this),
siteContainer = $('.site-container');
selectedTrigger = triggerBtn.data('content'),
selectedPopup = siteContainer.find('div.popup[data-content="'+selectedTrigger+'"]');
event.preventDefault();
selectedPopup.addClass('is-visible');
$('html').addClass('overflow-hidden');
});
//close popup
$('.popup').on('click', function(event){
if( $(event.target).is('.popup-close, .btn-reset') || $(event.target).is('.popup') ) {
//event.preventDefault();
$(this).removeClass('is-visible');
$('html').removeClass('overflow-hidden');
}
});
//close popup when clicking the esc keyboard button
$(document).keyup(function(event){
if(event.which=='27'){
$('.popup').removeClass('is-visible');
$('html').removeClass('overflow-hidden');
}
});
}
/*SLIDE CAPTIONS*/
function slideBoxes() {
if($('.deposit-label-container').exists()) {
if (Modernizr.touch) {
$('.deposit-label-container .deposit-label').on('click', function(event){
event.preventDefault();
$(this).toggleClass('is-open');
});
} else {
$('.deposit-label').hover(
function() {
$(this).find('.slide-box').slideDown(150);
}, function() {
$(this).find('.slide-box').slideUp(200);
}
);
/*
$('.deposit-label-container').on({
mouseenter : function() {
$(this).find('.slide-box').slideDown(150);
},
mouseleave : function() {
$(this).find('.slide-box').slideUp(200);
}
},'.deposit-label');
*/
}
}
}
function slideServices() {
if($('#services-list').exists()) {
var contain = $('.section-vip-services').find('.section-content');
var h = contain.height();
$('#services-list').click( function (event) {
$(this).toggleClass('toggled');
if ($(this).hasClass('toggled')) {
contain.animate({height:contain.prop('scrollHeight'),overflow:'visible'},'200');
}else{
contain.animate({height:h,overflow:'hidden'},'200');
}
});
}
}
/*sliders*/
function custom_sliders() {
$('.main-slider').on('beforeChange', function(event, slick, currentSlide, nextSlide){
$('.slide-item').find('.slide-img').addClass('slide-img-active');
$('.slide-item').find('.slide-content').addClass('slide-content-active');
});
$('.main-slider').on('afterChange', function(event, slick, currentSlide, nextSlide){
$('.slick-active').find('.slide-img').removeClass('slide-img-active');
$('.slick-active').find('.slide-content').removeClass('slide-content-active');
});
if($('.main-slider').exists()) {
$('.main-slider').slick({
lazyLoad: 'ondemand',
//adaptiveHeight: true,
infinite: true,
autoplay: true,
autoplaySpeed: 5000,
arrows: false,
dots: true,
fade: false,
//cssEase: 'linear',
easing: 'easeInSine',
speed: 1100,
slidesToShow: 1,
slidesToScroll: 1,
//mobileFirst: true,
responsive: [
{
breakpoint: 1100,
settings: {
dots: false,
fade: false,
}
},
// You can unslick at a given breakpoint now by adding:
// settings: "unslick"
// instead of a settings object
]
});
}
var dots = $('.slick-dots li');
dots.prev().click(function(){
$('.main-slider').on('beforeChange', function(event, slick, currentSlide, nextSlide){
$('.slick-active').prev(function(){
$(this).find('.slide-content').addClass('slide-content-active-prev');
});
});
console.log('result', 'it works!');
});
if($('.sync-slider-for').exists()) {
$('.sync-slider-for').slick({
//lazyLoad: 'progressive',
slidesToShow: 1,
slidesToScroll: 1,
arrows: false,
fade: true,
asNavFor: '.sync-slider-nav',
responsive: [
{
breakpoint: 1099,
settings: {
dots: false,
fade: false,
}
},
// You can unslick at a given breakpoint now by adding:
// settings: "unslick"
// instead of a settings object
]
});
$('.sync-slider-nav').slick({
//lazyLoad: 'progressive',
slidesToShow: 5,
slidesToScroll: 1,
//infinite: false,
asNavFor: '.sync-slider-for',
//dots: true,
//centerMode: true,
//centerPadding: '20px',
focusOnSelect: true
});
}
if($('.arrow-slider').exists()) {
$('.arrow-slider').slick({
dots: false,
arrows: false,
infinite: true,
speed: 300,
slidesToShow: 1,
adaptiveHeight: true
});
$('.slide-next').click(function(){
$(".vip-select-slider").slick('slickNext');
});
$('.slide-prev').click(function(){
$(".vip-select-slider").slick('slickPrev');
});
}
/*
if($('.sync-slider-for').exists()) {
$('.sync-slider-for').slick({
//lazyLoad: 'progressive',
slidesToShow: 1,
slidesToScroll: 1,
arrows: false,
fade: true,
asNavFor: '.sync-slider-nav'
});
$('.sync-slider-nav').slick({
//lazyLoad: 'progressive',
slidesToShow: 5,
slidesToScroll: 1,
//infinite: false,
asNavFor: '.sync-slider-for',
//dots: true,
//centerMode: true,
//centerPadding: '20px',
focusOnSelect: true
});
}
*/
if($('.arrow-slider').exists()) {
$('.arrow-slider').slick({
dots: false,
arrows: false,
infinite: true,
speed: 300,
slidesToShow: 1,
adaptiveHeight: true
});
$('.slide-next').click(function(){
$(".vip-select-slider").slick('slickNext');
});
$('.slide-prev').click(function(){
$(".vip-select-slider").slick('slickPrev');
});
}
}
/*media*/
/*Video Preload - YouTube*/
/*
//function video_preload() {
if($('.video-content').exists()) {
$(".video-content").each(function() {
// Based on the YouTube ID, we can easily find the thumbnail image
$(this).css('background-image', 'url(http://i.ytimg.com/vi/' + this.id + '/sddefault.jpg)');
// Overlay the Play icon to make it look like a video player
$(this).append($('<div/>', {'class': 'play'}));
$(document).delegate('#'+this.id, 'click', function() {
// Create an iFrame with autoplay set to true
var iframe_url = "//www.youtube.com/embed/" + this.id + "?autoplay=1&autohide=1";
if (Modernizr.touch) {
window.location.href = iframe_url;
return false;
}
if ($(this).data('params')) iframe_url+='&'+$(this).data('params');
// The height and width of the iFrame should be the same as parent
var iframe = $('<iframe/>', {'frameborder': '0','allowfullscreen':'', 'enablejsapi':'1', 'version':'3', 'src': iframe_url })
// Replace the YouTube thumbnail with YouTube HTML5 Player
$(this).replaceWith(iframe);
});
});
}*/
//}
//fixed credit form
function custom_credit_form() {
if($('.credit-form-container').exists()) {
//update these values if you change these breakpoints in the style.css file (or _layout.scss if you use SASS)
var MqM= 768,
MqL = 1099;
var creditFormContainer = $('.credit-form-container'),
creditInfoContainer = $('.credit-fixed-container > .inner-content');
//update category sidebar while scrolling
$(window).on('scroll', function(){
if ( $(window).width() > MqL ) {
(!window.requestAnimationFrame) ? updateFormPosition() : window.requestAnimationFrame(updateFormPosition);
}
});
$(window).on('resize', function(){
if($(window).width() <= MqL) {
creditFormContainer.removeClass('is-fixed').css({
'-moz-transform': 'translateY(0)',
'-webkit-transform': 'translateY(0)',
'-ms-transform': 'translateY(0)',
'-o-transform': 'translateY(0)',
'transform': 'translateY(0)',
});
}
if( creditFormContainer.hasClass('is-fixed') ) {
//var $pad = $('.container').css('padding-right').split('px'),
//$pos = Number($pad[0])+($('#flag').offset().left + 1) - $('.credit-form-container').width(),
//$m = ($('.credit-entry-content').width() - $('.container').outerWidth())/2;
creditFormContainer.css({
//'left': Number($pos) - Number($m),
//'left': $(window).width() - (creditInfoContainer.offset().left + creditInfoContainer.width()),
});
}
});
function updateFormPosition() {
var $negativeMargin = 330,
top = $('.credit-fixed-container').offset().top - $negativeMargin,
height = $('.credit-fixed-container').height() - $('.credit-form-container').height(),
margin = 20;
//$pad = $('.container').css('padding-right').split('px'),
//$pos = Number($pad[0])+($('#flag').offset().left + 1)-$('.credit-form-container').width();
height += $negativeMargin;
if( top - margin <= $(window).scrollTop() && top - margin + height > $(window).scrollTop() ) {
var leftValue = creditFormContainer.offset().left,
widthValue = creditFormContainer.width();
creditFormContainer.addClass('is-fixed').css({
//'left': $pos,
'top': margin /*+ 64*/,
'-moz-transform': 'translateZ(0)',
'-webkit-transform': 'translateZ(0)',
'-ms-transform': 'translateZ(0)',
'-o-transform': 'translateZ(0)',
'transform': 'translateZ(0)',
});
} else if( top - margin + height <= $(window).scrollTop()) {
var delta = top - margin + height - $(window).scrollTop();
creditFormContainer.css({
//'top': margin + 84,
'-moz-transform': 'translateZ(0) translateY('+delta+'px)',
'-webkit-transform': 'translateZ(0) translateY('+delta+'px)',
'-ms-transform': 'translateZ(0) translateY('+delta+'px)',
'-o-transform': 'translateZ(0) translateY('+delta+'px)',
'transform': 'translateZ(0) translateY('+delta+'px)',
});
} else {
//var $pad = $('.container').css('padding-right').split('px'),
//$pos = Number($pad[0])+($('#flag').offset().left + 1)-$('.credit-form-container').width(),
//$m = ($('.credit-entry-content').width() - $('.container').outerWidth())/2;
creditFormContainer.removeClass('is-fixed').css({
//'left': Number($pos) - Number($m),
'right': 20,
'top': -330,
});
}
}
}
}
//slick page nav
function custom_page_nav() {
if ($('.page-nav').exists()) {
var contentSections = $('.page-section'),
navigationItems = $('.page-nav a');
function updateNavigation() {
contentSections.each(function(){
$this = $(this);
var activeSection = $('.page-nav a[href="#'+$this.attr('id')+'"]').data('number') - 1;
if ( ( $this.offset().top - $(window).height()/2 < $(window).scrollTop() ) && ( $this.offset().top + $this.height() - $(window).height()/2 > $(window).scrollTop() ) ) {
navigationItems.eq(activeSection).addClass('is-selected');
}else {
navigationItems.eq(activeSection).removeClass('is-selected');
}
});
}
updateNavigation();
$(window).on('scroll', function(){
updateNavigation();
});
//smooth scroll to the section
navigationItems.on('click', function(event){
event.preventDefault();
smoothScroll($(this.hash));
});
function smoothScroll(target) {
$('body,html').animate(
{'scrollTop':target.offset().top},
600
);
}
}
}
//SIDEBAR SETTINGS
function custom_sidebar() {
//cache DOM elements
var siteBody = $('body'),
sidebar = $('.side-nav');
if (Modernizr.touch) {
$(sidebar).on('click', function(event){
event.preventDefault();
$(siteBody).toggleClass('side-nav-is-open');
});
$('.site-overlay').on('click', function(){
$(siteBody).removeClass('side-nav-is-open');
});
} else {
sidebar.hover(function(){
$(siteBody).toggleClass('side-nav-is-open');
});
}
//change Class
function positionSideNavBottom() {
var sideNavBottom = $('.side-nav .bottom'),
sideNavBottomHeight = sideNavBottom.outerHeight(),
sideNavPrimaryHeight = $('.side-nav .primary').outerHeight(),
sideNavSecondaryHeight = $('.side-nav .secondary').outerHeight(),
sideNavSearchHeight = $('.side-nav .site-search').outerHeight(),
sumHeight = sideNavBottomHeight + sideNavPrimaryHeight + sideNavSecondaryHeight + sideNavSearchHeight,
windowHeight = $(window).height() + 100;
if (sumHeight > windowHeight) {
sideNavBottom.removeClass('is-absolute');
} else {
sideNavBottom.addClass('is-absolute');
}
}
positionSideNavBottom();
$(window)
.scroll(positionSideNavBottom)
.resize(positionSideNavBottom)
}
//FLOATING LABELS
function custom_form_labels() {
if ($('.floating-labels').exists()) {
var inputFields = $('.floating-labels .form-control-label').next();
inputFields.each(function(){
var singleInput = $(this);
inputFields.focus(function() {
$("label[for='" + this.id + "']").addClass("float");
}).blur(function() {
checkVal(singleInput);
singleInput.on('change blur', function(){
checkVal(singleInput);
});
});
});
function checkVal(inputField) {
( inputField.val() == '' ) ? inputField.prev('.form-control-label').removeClass('float') : inputField.prev('.form-control-label').addClass('float');
}
$('.btn-reset').on('click', function(event){
inputFields.prev('.form-control-label').removeClass('float');
});
}
}
//$('.form-group > .form-control').focus(function () {
// console.log('result => it works!');
//});
//custom open card nav
function custom_card_nav() {
var triggerBtn = $('a.current-tp');
//open nav
triggerBtn.on('click', function(event){
var selectedItem = $(this);
event.preventDefault();
selectedItem.parent('.card-tp').toggleClass('is-open');
hideCardNav();
});
function hideCardNav() {
$(document).on('click', function(event){
if( !$(event.target).is(triggerBtn)) {
triggerBtn.parent('.card-tp').removeClass('is-open');
}
});
}
}
//custom topNav settings
function custom_top_nav() {
var topTriggerBtn = $('.top-navigation span.placeholder'),
currentItem = $('.top-navigation li.current-menu-item'),
currentItemText = currentItem.find('a').text();
topTriggerBtn.html(currentItemText);
//currentItem.hide();
//open nav
topTriggerBtn.on('click', function(event){
var selectedItem = $(this);
event.preventDefault();
selectedItem.parents('.top-navigation').toggleClass('is-open');
hideTopNav();
});
function hideTopNav() {
$(document).on('click', function(event){