forked from alvarotrigo/pagePiling.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.pagepiling.js
891 lines (750 loc) · 31.5 KB
/
jquery.pagepiling.js
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
/* ===========================================================
* pagepiling.js 0.0.9 (Beta)
*
* https://github.com/alvarotrigo/pagePiling.js
* MIT licensed
*
* Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
*
* ========================================================== */
(function ($) {
$.fn.pagepiling = function (options) {
var container = $(this);
var lastScrolledDestiny;
var lastAnimation = 0;
var isTouch = (('ontouchstart' in window) || (navigator.msMaxTouchPoints > 0));
var touchStartY = touchStartX = touchEndY = touchEndX = 0;
//Defines the delay to take place before being able to scroll to the next section
//BE CAREFUL! Not recommened to change it under 400 for a good behavior in laptops and
//Apple devices (laptops, mouses...)
var scrollDelay = 600;
// Create some defaults, extending them with any options that were provided
options = $.extend({
direction: 'vertical',
menu: null,
verticalCentered: true,
sectionsColor: [],
anchors: [],
scrollingSpeed: 700,
easing: 'swing',
loopBottom: false,
loopTop: false,
css3: true,
navigation: {
'textColor': '#000',
'bulletsColor': '#000',
'position': 'right',
'tooltips': ['section1', 'section2', 'section3', 'section4']
},
normalScrollElements: null,
normalScrollElementTouchThreshold: 5,
touchSensitivity: 5,
keyboardScrolling: true,
sectionSelector: '.section',
animateAnchor: false,
//events
afterLoad: null,
onLeave: null,
afterRender: null
}, options);
/**
* Defines the scrolling speed
*/
$.fn.pagepiling.setScrollingSpeed = function(value){
options.scrollingSpeed = value;
};
/**
* Adds or remove the possiblity of scrolling through sections by using the mouse wheel or the trackpad.
*/
$.fn.pagepiling.setMouseWheelScrolling = function (value){
if(value){
addMouseWheelHandler();
}else{
removeMouseWheelHandler();
}
};
/**
* Adds or remove the possiblity of scrolling through sections by using the mouse wheel/trackpad or touch gestures.
*/
$.fn.pagepiling.setAllowScrolling = function (value){
if(value){
$.fn.pagepiling.setMouseWheelScrolling(true);
addTouchHandler();
}else{
$.fn.pagepiling.setMouseWheelScrolling(false);
removeTouchHandler();
}
};
/**
* Adds or remove the possiblity of scrolling through sections by using the keyboard arrow keys
*/
$.fn.pagepiling.setKeyboardScrolling = function (value){
options.keyboardScrolling = value;
};
/**
* Moves sectio up
*/
$.fn.pagepiling.moveSectionUp = function () {
var prev = $('.pp-section.active').prev('.pp-section');
//looping to the bottom if there's no more sections above
if (!prev.length && options.loopTop) {
prev = $('.pp-section').last();
}
if (prev.length) {
scrollPage(prev);
}
};
/**
* Moves sectio down
*/
$.fn.pagepiling.moveSectionDown = function () {
var next = $('.pp-section.active').next('.pp-section');
//looping to the top if there's no more sections below
if(!next.length && options.loopBottom){
next = $('.pp-section').first();
}
if (next.length) {
scrollPage(next);
}
};
/**
* Moves the site to the given anchor or index
*/
$.fn.pagepiling.moveTo = function (section){
var destiny = '';
if(isNaN(section)){
destiny = $('[data-anchor="'+section+'"]');
}else{
destiny = $('.pp-section').eq( (section -1) );
}
if(destiny.length > 0){
scrollPage(destiny);
}
};
//adding internal class names to void problem with common ones
$(options.sectionSelector).each(function(){
$(this).addClass('pp-section');
});
//if css3 is not supported, it will use jQuery animations
if(options.css3){
options.css3 = support3d();
}
$(container).css({
'overflow' : 'hidden',
'-ms-touch-action': 'none', /* Touch detection for Windows 8 */
'touch-action': 'none' /* IE 11 on Windows Phone 8.1*/
});
//init
$.fn.pagepiling.setAllowScrolling(true);
//creating the navigation dots
if (!$.isEmptyObject(options.navigation) ) {
addVerticalNavigation();
}
var zIndex = $('.pp-section').length;
$('.pp-section').each(function (index) {
$(this).data('data-index', index);
$(this).css('z-index', zIndex);
//if no active section is defined, the 1st one will be the default one
if (!index && $('.pp-section.active').length === 0) {
$(this).addClass('active');
}
if (typeof options.anchors[index] !== 'undefined') {
$(this).attr('data-anchor', options.anchors[index]);
}
if (typeof options.sectionsColor[index] !== 'undefined') {
$(this).css('background-color', options.sectionsColor[index]);
}
if(options.verticalCentered){
addTableClass($(this));
}
zIndex = zIndex - 1;
}).promise().done(function(){
//vertical centered of the navigation + first bullet active
if(options.navigation){
$('#pp-nav').css('margin-top', '-' + ($('#pp-nav').height()/2) + 'px');
$('#pp-nav').find('li').eq($('.pp-section.active').index('.pp-section')).find('a').addClass('active');
}
$(window).on('load', function() {
scrollToAnchor();
});
$.isFunction( options.afterRender ) && options.afterRender.call( this);
});
/**
* Enables vertical centering by wrapping the content and the use of table and table-cell
*/
function addTableClass(element){
element.addClass('pp-table').wrapInner('<div class="pp-tableCell" style="height:100%" />');
}
/**
* Retuns `up` or `down` depending on the scrolling movement to reach its destination
* from the current section.
*/
function getYmovement(destiny){
var fromIndex = $('.pp-section.active').index('.pp-section');
var toIndex = destiny.index('.pp-section');
if(fromIndex > toIndex){
return 'up';
}
return 'down';
}
/**
* Scrolls the page to the given destination
*/
function scrollPage(destination, animated) {
var v ={
destination: destination,
animated: animated,
activeSection: $('.pp-section.active'),
anchorLink: destination.data('anchor'),
sectionIndex: destination.index('.pp-section'),
toMove: destination,
yMovement: getYmovement(destination),
leavingSection: $('.pp-section.active').index('.pp-section') + 1
};
//quiting when activeSection is the target element
if(v.activeSection.is(destination)){ return; }
if(typeof v.animated === 'undefined'){
v.animated = true;
}
if(typeof v.anchorLink !== 'undefined'){
setURLHash(v.anchorLink);
}
v.destination.addClass('active').siblings().removeClass('active');
v.sectionsToMove = getSectionsToMove(v);
//scrolling down (moving sections up making them disappear)
if (v.yMovement === 'down') {
v.translate3d = getTranslate3d();
v.scrolling = '-100%';
if(!options.css3){
v.sectionsToMove.each(function(index){
if(index != v.activeSection.index('.pp-section')){
$(this).css(getScrollProp(v.scrolling));
}
});
}
v.animateSection = v.activeSection;
}
//scrolling up (moving section down to the viewport)
else {
v.translate3d = 'translate3d(0px, 0px, 0px)';
v.scrolling = '0';
v.animateSection = destination;
}
$.isFunction(options.onLeave) && options.onLeave.call(this, v.leavingSection, (v.sectionIndex + 1), v.yMovement);
performMovement(v);
activateMenuElement(v.anchorLink);
activateNavDots(v.anchorLink, v.sectionIndex);
lastScrolledDestiny = v.anchorLink;
var timeNow = new Date().getTime();
lastAnimation = timeNow;
}
/**
* Performs the movement (by CSS3 or by jQuery)
*/
function performMovement(v){
if(options.css3){
transformContainer(v.animateSection, v.translate3d, v.animated);
v.sectionsToMove.each(function(){
transformContainer($(this), v.translate3d, v.animated);
});
setTimeout(function () {
afterSectionLoads(v);
}, options.scrollingSpeed);
}else{
v.scrollOptions = getScrollProp(v.scrolling);
if(v.animated){
v.animateSection.animate(
v.scrollOptions
, options.scrollingSpeed, options.easing, function () {
readjustSections(v);
afterSectionLoads(v);
});
}else{
v.animateSection.css(getScrollProp(v.scrolling));
setTimeout(function(){
readjustSections(v);
afterSectionLoads(v);
},400);
}
}
}
/**
* Actions to execute after a secion is loaded
*/
function afterSectionLoads(v){
//callback (afterLoad) if the site is not just resizing and readjusting the slides
$.isFunction(options.afterLoad) && options.afterLoad.call(this, v.anchorLink, (v.sectionIndex + 1));
}
function getSectionsToMove(v){
var sectionToMove;
if(v.yMovement === 'down'){
sectionToMove = $('.pp-section').map(function(index){
if (index < v.destination.index('.pp-section')){
return $(this);
}
});
}else{
sectionToMove = $('.pp-section').map(function(index){
if (index > v.destination.index('.pp-section')){
return $(this);
}
});
}
return sectionToMove;
}
/**
* Returns the sections to re-adjust in the background after the section loads.
*/
function readjustSections(v){
var readjustSections;
if(v.yMovement === 'up'){
v.sectionsToMove.each(function(index){
$(this).css(getScrollProp(v.scrolling));
});
}
return readjustSections;
}
/**
* Gets the property used to create the scrolling effect when using jQuery animations
* depending on the plugin direction option.
*/
function getScrollProp(propertyValue){
if(options.direction === 'vertical'){
return {'top': propertyValue};
}
return {'left': propertyValue};
}
/**
* Scrolls the site without anymations (usually used in the background without the user noticing it)
*/
function silentScroll(section, offset){
if (options.css3) {
transformContainer(section, getTranslate3d(), false);
}
else{
section.css(getScrollProp(offset));
}
}
/**
* Sets the URL hash for a section with slides
*/
function setURLHash(anchorLink){
if(options.anchors.length){
location.hash = anchorLink;
}
}
//TO DO
function scrollToAnchor(){
//getting the anchor link in the URL and deleting the `#`
var value = window.location.hash.replace('#', '');
var sectionAnchor = value;
var section = $('.pp-section[data-anchor="'+sectionAnchor+'"]');
if(section.length > 0){ //if theres any #
scrollPage(section, options.animateAnchor);
}
}
/**
* Determines if the transitions between sections still taking place.
* The variable `scrollDelay` adds a "save zone" for devices such as Apple laptops and Apple magic mouses
*/
function isMoving(){
var timeNow = new Date().getTime();
// Cancel scroll if currently animating or within quiet period
if (timeNow - lastAnimation < scrollDelay + options.scrollingSpeed) {
return true;
}
return false;
}
//detecting any change on the URL to scroll to the given anchor link
//(a way to detect back history button as we play with the hashes on the URL)
$(window).on('hashchange', hashChangeHandler);
/**
* Actions to do when the hash (#) in the URL changes.
*/
function hashChangeHandler(){
var value = window.location.hash.replace('#', '').split('/');
var sectionAnchor = value[0];
if(sectionAnchor.length){
//when moving to a slide in the first section for the first time (first time to add an anchor to the URL)
var isFirstMove = (typeof lastScrolledDestiny === 'undefined');
/*in order to call scrollpage() only once for each destination at a time
It is called twice for each scroll otherwise, as in case of using anchorlinks `hashChange`
event is fired on every scroll too.*/
if (sectionAnchor && sectionAnchor !== lastScrolledDestiny) {
if(isNaN(sectionAnchor)){
var section = $('[data-anchor="'+sectionAnchor+'"]');
}else{
var section = $('.pp-section').eq( (sectionAnchor -1) );
}
scrollPage(section);
}
}
}
/**
* Cross browser transformations
*/
function getTransforms(translate3d) {
return {
'-webkit-transform': translate3d,
'-moz-transform': translate3d,
'-ms-transform': translate3d,
'transform': translate3d
};
}
/**
* Adds a css3 transform property to the container class with or without animation depending on the animated param.
*/
function transformContainer(element, translate3d, animated) {
element.toggleClass('pp-easing', animated);
element.css(getTransforms(translate3d));
}
/**
* Sliding with arrow keys, both, vertical and horizontal
*/
$(document).keydown(function (e) {
if(options.keyboardScrolling && !isMoving()){
//Moving the main page with the keyboard arrows if keyboard scrolling is enabled
switch (e.which) {
//up
case 38:
case 33:
$.fn.pagepiling.moveSectionUp();
break;
//down
case 40:
case 34:
$.fn.pagepiling.moveSectionDown();
break;
//Home
case 36:
$.fn.pagepiling.moveTo(1);
break;
//End
case 35:
$.fn.pagepiling.moveTo($('.pp-section').length);
break;
//left
case 37:
$.fn.pagepiling.moveSectionUp();
break;
//right
case 39:
$.fn.pagepiling.moveSectionDown();
break;
default:
return; // exit this handler for other keys
}
}
});
/**
* If `normalScrollElements` is used, the mouse wheel scrolling will scroll normally
* over the defined elements in the option.
*/
if(options.normalScrollElements){
$(document).on('mouseenter', options.normalScrollElements, function () {
$.fn.pagepiling.setMouseWheelScrolling(false);
});
$(document).on('mouseleave', options.normalScrollElements, function(){
$.fn.pagepiling.setMouseWheelScrolling(true);
});
}
/**
* Detecting mousewheel scrolling
*
* http://blogs.sitepointstatic.com/examples/tech/mouse-wheel/index.html
* http://www.sitepoint.com/html5-javascript-mouse-wheel/
*/
function MouseWheelHandler(e) {
if(!isMoving()){
// cross-browser wheel delta
e = window.event || e;
var delta = Math.max(-1, Math.min(1,
(e.wheelDelta || -e.deltaY || -e.detail)));
var activeSection = $('.pp-section.active');
var scrollable = isScrollable(activeSection);
//scrolling down?
if (delta < 0) {
scrolling('down', scrollable);
//scrolling up?
}else {
scrolling('up', scrollable);
}
return false;
}
}
/**
* Determines the way of scrolling up or down:
* by 'automatically' scrolling a section or by using the default and normal scrolling.
*/
function scrolling(type, scrollable){
if(type == 'down'){
var check = 'bottom';
var scrollSection = $.fn.pagepiling.moveSectionDown;
}else{
var check = 'top';
var scrollSection = $.fn.pagepiling.moveSectionUp;
}
if(scrollable.length > 0 ){
//is the scrollbar at the start/end of the scroll?
if(isScrolled(check, scrollable)){
scrollSection();
}else{
return true;
}
}else{
// moved up/down
scrollSection();
}
}
/**
* Determines whether the active section or slide is scrollable through and scrolling bar
*/
function isScrollable(activeSection){
scrollable = activeSection.find('.pp-scrollable');
return scrollable;
}
/**
* Removes the auto scrolling action fired by the mouse wheel and tackpad.
* After this function is called, the mousewheel and trackpad movements won't scroll through sections.
*/
function removeMouseWheelHandler(){
if (container.get(0).addEventListener) {
container.get(0).removeEventListener('mousewheel', MouseWheelHandler, false); //IE9, Chrome, Safari, Oper
container.get(0).removeEventListener('wheel', MouseWheelHandler, false); //Firefox
} else {
container.get(0).detachEvent("onmousewheel", MouseWheelHandler); //IE 6/7/8
}
}
/**
* Adds the auto scrolling action for the mouse wheel and tackpad.
* After this function is called, the mousewheel and trackpad movements will scroll through sections
*/
function addMouseWheelHandler(){
if (container.get(0).addEventListener) {
container.get(0).addEventListener("mousewheel", MouseWheelHandler, false); //IE9, Chrome, Safari, Oper
container.get(0).addEventListener("wheel", MouseWheelHandler, false); //Firefox
} else {
container.get(0).attachEvent("onmousewheel", MouseWheelHandler); //IE 6/7/8
}
}
/**
* Adds the possibility to auto scroll through sections on touch devices.
*/
function addTouchHandler(){
if(isTouch){
//Microsoft pointers
MSPointer = getMSPointer();
container.off('touchstart ' + MSPointer.down).on('touchstart ' + MSPointer.down, touchStartHandler);
container.off('touchmove ' + MSPointer.move).on('touchmove ' + MSPointer.move, touchMoveHandler);
}
}
/**
* Removes the auto scrolling for touch devices.
*/
function removeTouchHandler(){
if(isTouch){
//Microsoft pointers
MSPointer = getMSPointer();
container.off('touchstart ' + MSPointer.down);
container.off('touchmove ' + MSPointer.move);
}
}
/*
* Returns and object with Microsoft pointers (for IE<11 and for IE >= 11)
* http://msdn.microsoft.com/en-us/library/ie/dn304886(v=vs.85).aspx
*/
function getMSPointer(){
var pointer;
//IE >= 11
if(window.PointerEvent){
pointer = { down: "pointerdown", move: "pointermove", up: "pointerup"};
}
//IE < 11
else{
pointer = { down: "MSPointerDown", move: "MSPointerMove", up: "MSPointerUp"};
}
return pointer;
}
/**
* Gets the pageX and pageY properties depending on the browser.
* https://github.com/alvarotrigo/fullPage.js/issues/194#issuecomment-34069854
*/
function getEventsPage(e){
var events = new Array();
if (window.navigator.msPointerEnabled){
events['y'] = e.pageY;
events['x'] = e.pageX;
}else{
events['y'] = e.touches[0].pageY;
events['x'] = e.touches[0].pageX;
}
return events;
}
/**
* Getting the starting possitions of the touch event
*/
function touchStartHandler(event){
var e = event.originalEvent;
var touchEvents = getEventsPage(e);
touchStartY = touchEvents['y'];
touchStartX = touchEvents['x'];
}
/* Detecting touch events
*/
function touchMoveHandler(event){
var e = event.originalEvent;
// additional: if one of the normalScrollElements isn't within options.normalScrollElementTouchThreshold hops up the DOM chain
if (!checkParentForNormalScrollElement(event.target)) {
event.preventDefault();
var activeSection = $('.pp-section.active');
var scrollable = isScrollable(activeSection);
if (!isMoving()) {
var touchEvents = getEventsPage(e);
touchEndY = touchEvents['y'];
touchEndX = touchEvents['x'];
//$('body').append('<span style="position:fixed; top: 250px; left: 20px; z-index:88; font-size: 25px; color: #000;">touchEndY: ' + touchEndY + '</div>');
//X movement bigger than Y movement?
if (options.direction === 'horizontal' && Math.abs(touchStartX - touchEndX) > (Math.abs(touchStartY - touchEndY))) {
//is the movement greater than the minimum resistance to scroll?
if (Math.abs(touchStartX - touchEndX) > (container.width() / 100 * options.touchSensitivity)) {
if (touchStartX > touchEndX) {
scrolling('down', scrollable);
} else if (touchEndX > touchStartX) {
scrolling('up', scrollable);
}
}
} else {
if (Math.abs(touchStartY - touchEndY) > (container.height() / 100 * options.touchSensitivity)) {
if (touchStartY > touchEndY) {
scrolling('down', scrollable);
} else if (touchEndY > touchStartY) {
scrolling('up', scrollable);
}
}
}
}
}
}
/**
* recursive function to loop up the parent nodes to check if one of them exists in options.normalScrollElements
* Currently works well for iOS - Android might need some testing
* @param {Element} el target element / jquery selector (in subsequent nodes)
* @param {int} hop current hop compared to options.normalScrollElementTouchThreshold
* @return {boolean} true if there is a match to options.normalScrollElements
*/
function checkParentForNormalScrollElement (el, hop) {
hop = hop || 0;
var parent = $(el).parent();
if (hop < options.normalScrollElementTouchThreshold &&
parent.is(options.normalScrollElements) ) {
return true;
} else if (hop == options.normalScrollElementTouchThreshold) {
return false;
} else {
return checkParentForNormalScrollElement(parent, ++hop);
}
}
/**
* Creates a vertical navigation bar.
*/
function addVerticalNavigation(){
$('body').append('<div id="pp-nav"><ul></ul></div>');
var nav = $('#pp-nav');
nav.css('color', options.navigation.textColor);
nav.addClass(options.navigation.position);
for(var cont = 0; cont < $('.pp-section').length; cont++){
var link = '';
if(options.anchors.length){
link = options.anchors[cont];
}
if(typeof options.navigation.tooltips !== 'undefined'){
var tooltip = options.navigation.tooltips[cont];
if(typeof tooltip === 'undefined'){
tooltip = '';
}
}
nav.find('ul').append('<li data-tooltip="' + tooltip + '"><a href="#' + link + '"><span></span></a></li>');
}
nav.find('span').css('border-color', options.navigation.bulletsColor);
}
/**
* Scrolls to the section when clicking the navigation bullet
*/
$(document).on('click touchstart', '#pp-nav a', function(e){
e.preventDefault();
var index = $(this).parent().index();
scrollPage($('.pp-section').eq(index));
});
/**
* Navigation tooltips
*/
$(document).on({
mouseenter: function(){
var tooltip = $(this).data('tooltip');
$('<div class="pp-tooltip ' + options.navigation.position +'">' + tooltip + '</div>').hide().appendTo($(this)).fadeIn(200);
},
mouseleave: function(){
$(this).find('.pp-tooltip').fadeOut(200, function() {
$(this).remove();
});
}
}, '#pp-nav li');
/**
* Activating the website navigation dots according to the given slide name.
*/
function activateNavDots(name, sectionIndex){
if(options.navigation){
$('#pp-nav').find('.active').removeClass('active');
if(name){
$('#pp-nav').find('a[href="#' + name + '"]').addClass('active');
}else{
$('#pp-nav').find('li').eq(sectionIndex).find('a').addClass('active');
}
}
}
/**
* Activating the website main menu elements according to the given slide name.
*/
function activateMenuElement(name){
if(options.menu){
$(options.menu).find('.active').removeClass('active');
$(options.menu).find('[data-menuanchor="'+name+'"]').addClass('active');
}
}
/**
* Checks for translate3d support
* @return boolean
* http://stackoverflow.com/questions/5661671/detecting-transform-translate3d-support
*/
function support3d() {
var el = document.createElement('p'),
has3d,
transforms = {
'webkitTransform':'-webkit-transform',
'OTransform':'-o-transform',
'msTransform':'-ms-transform',
'MozTransform':'-moz-transform',
'transform':'transform'
};
// Add it to the body to get the computed style.
document.body.insertBefore(el, null);
for (var t in transforms) {
if (el.style[t] !== undefined) {
el.style[t] = "translate3d(1px,1px,1px)";
has3d = window.getComputedStyle(el).getPropertyValue(transforms[t]);
}
}
document.body.removeChild(el);
return (has3d !== undefined && has3d.length > 0 && has3d !== "none");
}
/**
* Gets the translate3d property to apply when using css3:true depending on the `direction` option.
*/
function getTranslate3d(){
if (options.direction !== 'vertical') {
return 'translate3d(-100%, 0px, 0px)';
}
return 'translate3d(0px, -100%, 0px)';
}
};
})(jQuery);