-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·2517 lines (2150 loc) · 131 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta charset="utf-8" />
<title>%appName%</title>
<!-- App Version %version% -->
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> -->
<!-- TODO: Re generate bootstrap custom with navbar -->
<!--link rel="stylesheet" href="https://app-generic-new-2.vercel.app/css/bootstrap-custom.min.css" >-->
<link rel="stylesheet" type="text/css"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link
href="https://fonts.google.com/icons?selected=Material+Symbols+Outlined:media_bluetooth_on:FILL@0;wght@400;GRAD@0;opsz@24&icon.query=music"
rel="">
<!-- Not loading due to CORS error: <link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/font-awesome.min.css"> -->
<!-- Hydra Start CSS Minify -->
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/fonts.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/fontface.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/style.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/owl.carousel.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/owl.theme.default.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialButtonIcon.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialContextMenu.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialDrawer.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialShared.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialCard.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialChip.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialButton.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialSnackBar.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialDialogBox.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialRating.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialInputChoice.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialInputTextArea.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialProgressCircle.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialProgressCircleMini.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialDeadlineCircle.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialDeadlineCircleMega.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialText.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialLink.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialCardProgress.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialLesson.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialProgressBar.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialBarDashboard.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/animate.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialSwitch.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialOutline.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialPlaceHolder.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialInput.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialForm.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialTopBar.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/margin-helpers-compiled.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/app.css">
<link rel="stylesheet" type="text/css"
href="https://app-generic-new-2.vercel.app/css/app.templates.pages.dashboard-infinite.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/app.templates.pages.course.css">
<link rel="stylesheet" type="text/css"
href="https://app-generic-new-2.vercel.app/css/app.templates.modules.rewardsSection.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/backgrounds.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/sync-audio-text.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialFilterPills.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialSearchBar.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/iGuider.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/iGuider-theme-material.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialCardScrolling.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialAccordion.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialHeroSection.css">
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/slick/slick-theme.css"/>
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/materialCardScrolling_v2.css"/>
<link rel="stylesheet" type="text/css" href="https://app-generic-new-2.vercel.app/css/samNewCss.css">
<script id="fsc-api" src="https://sbl.onfastspring.com/sbl/0.9.5/fastspring-builder.min.js" type="text/javascript"
data-storefront="thepianoencyclopedia.onfastspring.com/popup-default-template"
data-popup-closed="fastSpringCallbackPopupClosed" data-continuous=true>
</script>
<script>
function fastSpringCallbackPopupClosed(data) {
console.log(data);
if (data && data.reference) {
console.log("Order Success");
if (materialDialog) {
var settings = {
hideCallback: function () {
location.reload();
}
};
materialDialog.alert(
"Order Succesful!",
"Congratulations for investing in your piano education. The app will now refresh shortly after you click on the 'OK' button.", settings
);
}
}
}
</script>
<!-- Hydra End CSS Minify -->
</head>
<body style="%themeBody%">
<!-- Start Bottom Navigation Bar -->
<div class="materialBarDashboardNavigation materialBarDashboard bottomNavigationContainer"
style="position: fixed; width: 100%; bottom: 0; z-index:9997; top: initial; box-shadow: 0px -1px 3px 0px #0000008c, 0px -1px 10px 0px #ffde008c; transition: bottom 0.3s ease-out;">
<div class="container">
<div class="row">
<nav
class="navbar navbar-expand-lg navbar-inverse materialBarDashboardNavBar materialBarDashboardNavWidth">
<div class="navbar-header"
style="display: flex; flex-direction: row; flex-basis: 0; float: none !important">
<button title="Home"
class="navbar-toggle materialBarDashboardNavbarToggle announcementNotifications help-home-bottom-nav-button"
data-button="" data-linktarget="home"
data-script="router.navigate('/'); setTimeout(function(){$('html, body').animate({ scrollTop: $('#dashboard-lessons-header').offset().top-85},500,'linear');}, 600)"
style="flex-grow: 1;margin: 5px 5px 5px 4px;display: block" type="button"><span
class="sr-only">Home</span>
<i class="material-icons">home</i>
<span class="iconText">Home</span>
</button>
<button title="Profile"
class="navbar-toggle materialBarDashboardNavbarToggle announcementNotifications help-search-bottom-nav-button"
data-button="" data-linktarget="search" data-script="router.navigate('#!/search/_');"
style="flex-grow: 1;margin: 5px 5px 5px 4px;display: block" type="button"><span
class="sr-only">Search</span>
<i class="material-icons">search</i>
<span class="iconText">Search</span>
</button>
<button title="My Courses"
class="navbar-toggle materialBarDashboardNavbarToggle announcementNotifications help-my-courses-bottom-nav-button"
data-button="" data-linktarget="filter"
data-script="router.navigate('#!/filter/In%20Progress/');"
style="flex-grow: 1;margin: 5px 5px 5px 4px;display: block" type="button"><span
class="sr-only">My Courses</span>
<i class="material-icons">star</i>
<span class="iconText">My Courses</span>
</button>
<!-- <button title="Profile" class="navbar-toggle materialBarDashboardNavbarToggle announcementNotifications" data-button="" data-script="router.navigate('#!/profile/');" style="flex-grow: 1;margin: 5px 5px 5px 4px;display: block" type="button"><span class="sr-only">Profile</span><i class="material-icons" style=" color: white;">face</i>
<span class="iconText">Profile</span>
</button> -->
<button title="Messages"
class="navbar-toggle materialBarDashboardNavbarToggle announcementNotifications help-inbox-bottom-nav-button"
data-button="" data-script="app.showAnnoucementDialog(true)"
style="flex-grow: 1;margin: 5px 5px 5px 4px;display: block" type="button"><span
class="sr-only">Unread Messages</span> <span class="material-icons"
style="color: white;position: relative;">mail <span
class="num animated headShake fast infinite announcementNotificationsCounter"
style="display: none; position: absolute;right: -10px;top: -4px;color: #fff;background: red;padding: 2px 5px;font-family: 'Lato', sans-serif;font-size: 13px;border-radius: 18px;font-weight: bold;">1</span></span>
<span class="iconText">Inbox</span>
</button>
<button title="Help"
class="navbar-toggle materialBarDashboardNavbarToggle announcementNotifications help-help-bottom-nav-button"
data-button="" data-script="helpTour.helpButtonClicked()"
style="flex-grow: 1;margin: 5px 5px 5px 4px;display: block" type="button"><span
class="sr-only">help</span>
<i class="material-icons" style=" color: white;">help</i>
<span class="iconText">Help</span>
</button>
</div>
</nav>
</div>
</div>
</div>
<!-- End Navigation Bar -->
<div id="content" style="margin-bottom: 56px">
<!-- Placeholder Start -->
<div class="container" style="margin-top: 90px;">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="materialCard">
<div class="materialCardTop">
<div class="materialCardImg materialPlaceHolder"></div>
<div class="materialCardInfo">
<h2 class="materialPlaceHolder" style="height: 30px;width: 70%"></h2>
<h6 class="materialPlaceHolder" style="height: 20px;width: 50%"></h6>
<p class="materialPlaceHolder" style="height: 80px;width: 100%"></p>
</div>
</div>
<div class="materialCardAction materialPlaceHolder" style="height: 45px;width: 100%"></div>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="materialCard">
<div class="materialCardTop">
<div class="materialCardImg materialPlaceHolder"></div>
<div class="materialCardInfo">
<h2 class="materialPlaceHolder" style="height: 30px;width: 70%"></h2>
<h6 class="materialPlaceHolder" style="height: 20px;width: 50%"></h6>
<p class="materialPlaceHolder" style="height: 80px;width: 100%"></p>
</div>
</div>
<div class="materialCardAction materialPlaceHolder" style="height: 25px;width: 100%"></div>
</div>
</div>
</div>
</div>
<!-- Placeholder End -->
</div>
<div id="q-app"></div>
<script>
// var config = {
// "appName" : "Members-Only Lessons Dashboard",
// "serverUrl" : "https://pianoencyclopedia.com/en/app-generic/server/",
// "root" : "https://app-generic-new-2.vercel.app/",
// "layout": {
// "searchResults": "col-lg-6 col-md-6 col-sm-6 col-xs-12",
// "searchResultsMinHeight": "520px",
// "searchResultsCourseTitleFontSize": "1.9em",
// "searchResultsSortFx" : function(course){if(course.title){return course.title;}}
// },
// "text": {
// "header" : function(){ return "Members-Only Area"; },
// "searchBarPlaceholder" : "Search for available courses or lessons",
// "searchResultsTopLeft" : function(course){ return false; },
// "searchResultsBottomLeft" : function(course){ return false; },
// "searchResultsLineText1" : function(course){ return (course.description ? course.description : "?"); },
// "searchResultsLineText2" : function(course){ return false; }
// },
// "theme":{
// "header": "background: #fffae4; color: #7a0000; padding-top: 90px; padding-bottom: 40px; font-size: 25px; font-weight: 300; margin: 0;"
// }
// };
/* THIS IS THE CONFIGURATION FOR THE ULTIMATE COLLECTION OF PIANO MUSIC */
var config = {
"appName": "The Ultimate Collection of Piano Music",
"serverUrl": "https://pianoencyclopedia.com/en/app-generic/server/",
// "serverUrl": "https://app-generic-new-2.vercel.app/server2.json",
"root": "https://app-generic-new-2.vercel.app/",
"featuredFiltersOrder" : ['In Progress', 'level', 'composer', 'era', 'form', 'duration'],
"featuredCarousels": ["level", "composer", "era"],
"layout": {
"searchResults": "col-lg-4 col-md-4 col-sm-6 col-xs-12",
"searchResultsMinHeight": "445px",
"searchResultsCourseTitleFontSize": "1.9em",
"searchResultsSortFx": function (course) { if (course.filters) { if (course.filters.level) { return course.filters.level; } } }
},
"text": {
"header": function () { return config.appName; },
"searchBarPlaceholder": "Search for composers or your favorite music",
"searchResultsTopLeft": function (course) { return ((course.filters && course.filters.era) ? course.filters.era : ""); },
"searchResultsBottomLeft": function (course) { return ((course.filters && course.filters.duration) ? course.filters.duration + " minutes" : ""); },
"searchResultsLineText1": function (course) { return ((course.filters && course.filters.level) ? course.filters.level : ""); },
"searchResultsLineText2": function (course) { return ((course.filters && course.filters.composer) ? course.filters.composer : ""); }
},
"theme": {
"background": "linear-gradient(180deg, #fffae4 0%, #fffae4 100%)"
},
"content": {
"featuredCourses": [1000000, 1000001, 1000061],
"featuredLessons": [1100000, 1100001, 1200001, 1200061, 1200061],
"tourIds": [1000000, 1100000]
},
"help": {
"home": function () {
return iGuider({
tourID: 'UltimateCollectionHome', //This string allows you to save data with a unique name about tour progress.
//It can be used to save information on the progress of the tour for several users.
//Or save the progress of each tour separately
tourTitle: 'The Ultimate Collection of Piano Music', //Tour title
tourSubtitle: 'The Home Navigation',
startStep: 1, //Step from which the tour begins
overlayClickable: true, //This parameter enables or disables the click event for overlying layer
overlayColor: '#000', //Global color values of the overlay layer.
overlayOpacity: 0.5, //Global opacity values of the overlay layer.
pagination: true, //Shows the total number of steps and the current step number
registerMissingElements: true, //Shows an absent element in tour map and find this element in DOM.
textDirection: 'ltr', //Global text direction. (ltr, rtl)
shape: 0, //Global shape of highlighting. 0 - rectangle (default), 1 - circle, 2 - rounded rectangle
shapeBorderRadius: 5, //Global corner radius of rounded rectangle shape. Only when "shape" value is "2"
width: 320, //Global width of the message block
bgColor: false, //Global background color of the message block
titleColor: false, //Global title color of the message block
modalContentColor: false, //Global content color of the message block
modalTypeColor: false, //Global modal type color of the message block
paginationColor: false, //Global pagination color of the message block
timerColor: false, //Global timer color of the message block
btnColor: false, //Global buttons color
btnHoverColor: false, //Global buttons hover color
spacing: 10, //Global indent highlighting around the element
baseurl: false, //The initial portion of the URL that is common to all steps.
//Required if you specify a relative URL in the LOC parameter value.
loc: false, //Global relative/absolute path to the page for steps for which the LOC parameter is not specified.
//If the path is relative, then you must specify the "baseurl" parameter in the group of general parameters.
timer: 15000, //Global time after which an automatic switching to the next step
timerType: 'line', //Global timer shape type: 'line' or 'circle'
keyboard: true, //Tour control by keyboard buttons. Left - the previous step, right - the next step, Esc - close tour.
keyboardEvent: false, //This parameter sets the permission to trigger custom events.
intro: { //Default intro settings
enable: false, //If set to true, before the tour you will see the introductory slide, which will offer to see a tour.
title: 'Welcome to the interactive tour', //Title of introduction dialog
content: 'This tour will tell you about the main site functionalities', //Content of introduction dialog
cover: '', //Path to the cover of intro
overlayColor: false, //For intro, you can specify the different color values of the overlay layer.
overlayOpacity: false, //For intro, you can specify the different opacity values of the overlay layer.
width: false, //Width of the intro message block
bgColor: false, //Background color of the intro message block
titleColor: false, //Title color of the intro message block
modalContentColor: false, //Content color of the intro message block
modalTypeColor: false, //Modal type color of the intro message block
btnColor: false, //Buttons color of the intro message block
btnHoverColor: false //Buttons Hover color of the intro message block
},
continue: { //Default the continue message settings
enable: true, //This parameter add the ability to continue the unfinished tour.
title: 'Continue the unfinished tour?', //Title of continue dialog
content: 'Click "Continue" to start with step on which finished last time.', //Content of continue dialog
cover: '', //Path to the cover of continue message
overlayColor: false, //For continue message, you can specify the different color values of the overlay layer.
overlayOpacity: false, //For continue message, you can specify the different opacity values of the overlay layer.
width: false, //Width of the continue message block
bgColor: false, //Background color of the continue message block
titleColor: false, //Title color of the continue message block
modalContentColor: false, //Content color of the continue message block
modalTypeColor: false, //Modal type color of the continue message block
btnColor: false, //Buttons color of the continue message block
btnHoverColor: false //Buttons Hover color of the continue message block
},
tourMap: { //Default Tour Checklist settings
enable: true, //This parameter add the ability view list of steps.
position: 'right', //Checklist Position
clickable: true, //Specifies the clickability of links in the checklist of steps: true - clickable, false - disabled, or 'ready' - clickable only completed steps and current
open: true, //Specifies to show or hide the Checklist at the start of the tour
bgColor: false, //Background color of the Checklist
titleColor: false, //Title color of the Checklist
btnColor: false, //Buttons color of the checklist block
btnHoverColor: false, //Buttons hover color of the checklist block
itemColor: false, //Item color of the Checklist
itemHoverColor: false, //Item hover color of the Checklist
itemActiveColor: false, //Item Active color of the Checklist
itemActiveBg: false, //Item Active BG color of the Checklist
itemNumColor: false, //Item Number color of the Checklist
checkColor: false, //Check color of the Checklist
checkReadyColor: false //Check Ready color of the Checklist
},
steps: [
{
"title": "Welcome to 'The Ultimate Collection of Piano Music'!",
"content": "You're in the right place to explore the vast world of piano music. Let's embark on a musical journey together.",
"target": ".help-logo-for-header",
"overlayColor": "#000055",
"shape": 1,
"timer": 15000
},
{
"title": "Find Your Musical Inspirations!",
"content": "Easily search for your favorite pieces or composers right here. Type away and discover the melodies that await you.",
"target": ".help-search-bar",
"overlayColor": "#000",
"shape": 0,
"timer": 15000
},
{
"title": "Start Your Musical Quest!",
"content": "After entering your search, click here to unveil a world of piano masterpieces tailored just for you.",
"target": ".help-search-button",
"overlayColor": "#000055",
"shape": 1,
"timer": 15000
},
{
"title": "Refine Your Search with Ease!",
"content": "Use this filter to narrow your search by level, composer, era, form, and more, finding the perfect piece for your mood and skill.",
"target": ".help-filter-dropdown-button",
"overlayColor": "#000055",
"shape": 0,
"timer": 15000
},
{
"title": "Your Personal Piano Profile!",
"content": "Click here to navigate to your profile and personalize your piano learning experience.",
"target": ".help-profile-trigger-dashboard-nav-link",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Discover Personalized Recommendations!",
"content": "This section is where your piano adventure begins with handpicked recommendations just for you.",
"target": ".help-animated-hero-section",
"overlayColor": "#000",
"shape": 0,
"timer": 15000
},
{
"title": "Track Your Learning Progress!",
"content": "Here, see your available lessons and your journey towards mastering more piano pieces.",
"target": ".help-lesson-completed-container",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Earn Rewards as You Learn!",
"content": "Your progress and feedback earn you Reward Points, unlocking more free lessons for your musical adventure.",
"target": ".help-view-reward-points-container",
"overlayColor": "#000055",
"shape": 1,
"timer": 15000
},
{
"title": "Unlock Premium Content with Melody Coins!",
"content": "Purchase Melody Coins to access premium content on-demand, enhancing your piano learning experience.",
"target": ".help-view-melody-coins-container",
"overlayColor": "#000055",
"shape": 1,
"timer": 15000
},
{
"title": "Your Road to Rewards!",
"content": "This indicator shows your progress towards the next Reward Level, unlocking new lessons and opportunities.",
"target": ".help-reward-level-progress-indicator",
"overlayColor": "#000055",
"shape": 1,
"timer": 15000
},
{
"title": "Customize Your Course Selection!",
"content": "Use these filters to sort courses and lessons by level, composer, duration, and more, tailoring your learning path.",
"target": ".help-filter-pills-container",
"overlayColor": "#000055",
"shape": 0,
"timer": 15000
},
{
"title": "Navigate Home with Ease!",
"content": "This button takes you back to the home screen, where your piano journey begins each time.",
"target": ".help-home-bottom-nav-button",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Quick Search Access!",
"content": "Tap here to start a new search and explore a world of piano music at your fingertips.",
"target": ".help-search-bottom-nav-button",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Your Personal Course Library!",
"content": "Visit your courses, track your progress, and revisit recently accessed lessons.",
"target": ".help-my-courses-bottom-nav-button",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Stay Updated with Notifications!",
"content": "Check here for special messages and updates, ensuring you never miss out on new opportunities.",
"target": ".help-inbox-bottom-nav-button",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Need a Hand? We're Here to Help!",
"content": "Click this button to activate the help tour on any page and get assistance whenever you need it.",
"target": ".help-help-bottom-nav-button",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
}
],
lang: { //Default language settings
cancelTitle: 'Cancel Tour', //The title in the cancel tour button
cancelText: '×', //The text in the cancel tour button
hideText: 'Hide Tour Map', //The text in the hidden tour map button
tourMapText: '=', //The text in the show tour button
tourMapTitle: 'Tour Map', //Title of Tour map button
nextTextDefault: 'Next', //The text in the Next Button
prevTextDefault: 'Prev', //The text in the Prev Button
endText: 'End Tour', //The text in the End Tour Button
contDialogBtnBegin: 'Start over', //Text in the start button of continue dialog
contDialogBtnContinue: 'Continue', //Text in the continue button of continue dialog
introDialogBtnStart: 'Start', //Text in the start button of introduction dialog
introDialogBtnCancel: 'Cancel', //Text in the cancel button of introduction dialog
modalIntroType: 'Tour Intro', //Type Name of intro dialog
modalContinueType: 'Unfinished Tour' //Type Name of continue dialog
},
create: function () { }, //Triggered when the iGuider is created
start: function () { }, //Triggered before first showing the step
progress: function (data) { }, //Triggered together with start any step
end: function () { }, //Triggered when the tour ended, or was interrupted
abort: function () { }, //Triggered when the tour aborted
finish: function () { }, //Triggered when step sequence is over
play: function () { }, //Triggered when the timer state switches to "play"
pause: function () { }, //Triggered when the timer state switches to "pause"
modalTemplate: //Modal window template
'<div class="gWidget">' +
'<div class="gCover">[modal-cover]</div>' +
'<div class="gAction">' +
'<span class="gType">[modal-type]</span>' +
'<span class="gBtn">[modal-map]</span>' +
'<span class="gBtn">[modal-close]</span>' +
'<div class="gTimer">[modal-timer]</div>' +
'</div>' +
'<div class="gScroll">' +
'<div class="gHeader">[modal-header]</div>' +
'<div class="gContent">[modal-body]</div>' +
'</div>' +
'<div class="gFooter">' +
'<span class="gPage">' +
'<span class="gPageVal">[step-value]</span>' +
'<span class="gPageTotal">[step-total]</span>' +
'</span>' +
'<span class="gBtn">[modal-prev]</span>' +
'<span class="gBtn">[modal-next]</span>' +
'<span class="gBtn">[modal-cancel]</span>' +
'<span class="gBtn">[modal-start]</span>' +
'<span class="gBtn">[modal-begin-first]</span>' +
'<span class="gBtn">[modal-begin-continue]</span>' +
'</div>' +
'</div>',
mapTemplate: //Tour Map template
'<div class="g-map-pos">' +
'<div class="gMapAction">' +
'<span class="gBtn">[map-toggle]</span>' +
'<span class="gBtn">[map-hide]</span>' +
'</div>' +
'<div class="gMapHeader">[map-header]</div>' +
'<span class="gPage">' +
'<span class="gPageVal">[step-value]</span>' +
'<span class="gPageTotal">[step-total]</span>' +
'</span>' +
'<div class="gMapContent">[map-content]</div>' +
'<div class="gMapBufer"></div>' +
'</div>',
debug: true //Display of messages in the console
});
},
"lesson": function () {
return iGuider({
tourID: 'UltimateCollectionLesson', //This string allows you to save data with a unique name about tour progress.
//It can be used to save information on the progress of the tour for several users.
//Or save the progress of each tour separately
tourTitle: 'The Ultimate Collection of Piano Music', //Tour title
tourSubtitle: 'Lesson Page Navigation',
startStep: 1, //Step from which the tour begins
overlayClickable: true, //This parameter enables or disables the click event for overlying layer
overlayColor: '#000', //Global color values of the overlay layer.
overlayOpacity: 0.5, //Global opacity values of the overlay layer.
pagination: true, //Shows the total number of steps and the current step number
registerMissingElements: true, //Shows an absent element in tour map and find this element in DOM.
textDirection: 'ltr', //Global text direction. (ltr, rtl)
shape: 0, //Global shape of highlighting. 0 - rectangle (default), 1 - circle, 2 - rounded rectangle
shapeBorderRadius: 5, //Global corner radius of rounded rectangle shape. Only when "shape" value is "2"
width: 320, //Global width of the message block
zIndex: 30,
bgColor: false, //Global background color of the message block
titleColor: false, //Global title color of the message block
modalContentColor: false, //Global content color of the message block
modalTypeColor: false, //Global modal type color of the message block
paginationColor: false, //Global pagination color of the message block
timerColor: false, //Global timer color of the message block
btnColor: false, //Global buttons color
btnHoverColor: false, //Global buttons hover color
spacing: 10, //Global indent highlighting around the element
baseurl: false, //The initial portion of the URL that is common to all steps.
//Required if you specify a relative URL in the LOC parameter value.
loc: false, //Global relative/absolute path to the page for steps for which the LOC parameter is not specified.
//If the path is relative, then you must specify the "baseurl" parameter in the group of general parameters.
timer: 15000, //Global time after which an automatic switching to the next step
timerType: 'line', //Global timer shape type: 'line' or 'circle'
keyboard: true, //Tour control by keyboard buttons. Left - the previous step, right - the next step, Esc - close tour.
keyboardEvent: false, //This parameter sets the permission to trigger custom events.
intro: { //Default intro settings
enable: false, //If set to true, before the tour you will see the introductory slide, which will offer to see a tour.
title: 'Welcome to the interactive tour', //Title of introduction dialog
content: 'This tour will tell you about the main site functionalities', //Content of introduction dialog
cover: '', //Path to the cover of intro
overlayColor: false, //For intro, you can specify the different color values of the overlay layer.
overlayOpacity: false, //For intro, you can specify the different opacity values of the overlay layer.
width: false, //Width of the intro message block
bgColor: false, //Background color of the intro message block
titleColor: false, //Title color of the intro message block
modalContentColor: false, //Content color of the intro message block
modalTypeColor: false, //Modal type color of the intro message block
btnColor: false, //Buttons color of the intro message block
btnHoverColor: false //Buttons Hover color of the intro message block
},
continue: { //Default the continue message settings
enable: true, //This parameter add the ability to continue the unfinished tour.
title: 'Continue the unfinished tour?', //Title of continue dialog
content: 'Click "Continue" to start with step on which finished last time.', //Content of continue dialog
cover: '', //Path to the cover of continue message
overlayColor: false, //For continue message, you can specify the different color values of the overlay layer.
overlayOpacity: false, //For continue message, you can specify the different opacity values of the overlay layer.
width: false, //Width of the continue message block
bgColor: false, //Background color of the continue message block
titleColor: false, //Title color of the continue message block
modalContentColor: false, //Content color of the continue message block
modalTypeColor: false, //Modal type color of the continue message block
btnColor: false, //Buttons color of the continue message block
btnHoverColor: false //Buttons Hover color of the continue message block
},
tourMap: { //Default Tour Checklist settings
enable: true, //This parameter add the ability view list of steps.
position: 'right', //Checklist Position
clickable: true, //Specifies the clickability of links in the checklist of steps: true - clickable, false - disabled, or 'ready' - clickable only completed steps and current
open: true, //Specifies to show or hide the Checklist at the start of the tour
bgColor: false, //Background color of the Checklist
titleColor: false, //Title color of the Checklist
btnColor: false, //Buttons color of the checklist block
btnHoverColor: false, //Buttons hover color of the checklist block
itemColor: false, //Item color of the Checklist
itemHoverColor: false, //Item hover color of the Checklist
itemActiveColor: false, //Item Active color of the Checklist
itemActiveBg: false, //Item Active BG color of the Checklist
itemNumColor: false, //Item Number color of the Checklist
checkColor: false, //Check color of the Checklist
checkReadyColor: false //Check Ready color of the Checklist
},
steps: [
{
"title": "Course Overview at Your Fingertips!",
"content": "This breadcrumb shows your current lesson and the course it belongs to. Click to easily navigate back to the course overview or to switch lessons.",
"target": ".help-lesson-breadcrumbs",
"overlayColor": "#000055",
"shape": 1,
"timer": 15000
},
{
"title": "Track Your Overall Course Progress!",
"content": "This visual indicator shows how much of the course you've completed. It's a great way to see your progress and stay motivated.",
"target": ".help-course-progress",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Explore the Course Curriculum!",
"content": "Here you'll find the complete list of lessons in your course, organized by chapter. Check out lesson details, see your progress, or jump to a different lesson.",
"target": ".help-lessons-accordion-content",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "See Your Progress in the Current Lesson!",
"content": "This indicator shows how much of the current lesson you've completed. It's a handy tool to gauge your progress and plan your study time.",
"target": ".help-lesson-progress-text",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Lesson Overview",
"content": "Get an insight into what this lesson covers. Understanding the lesson's goals and content helps you focus on key learning points.",
"target": ".help-lesson-description-text",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Rate and Personalize Your Learning!",
"content": "By rating the lesson, you help improve the learning experience. Your ratings also earn Reward Points, unlocking more content for you.",
"target": ".help-lessons-ratings",
"overlayColor": "#000055",
"shape": 1,
"timer": 15000
},
{
"title": "Move on to the Next Lesson",
"content": "Finished with this lesson? Click here to advance to the next one. Keep the momentum going in your piano learning journey!",
"target": ".help-next-lesson-button",
"event": "click",
"overlayColor": "#000055",
"shape": 1,
"timer": 15000
},
{
"title": "Need a Hand? We're Here to Help!",
"content": "Click this button to activate the help tour on any page and get assistance whenever you need it.",
"target": ".help-help-bottom-nav-button",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
}
],
lang: { //Default language settings
cancelTitle: 'Cancel Tour', //The title in the cancel tour button
cancelText: '×', //The text in the cancel tour button
hideText: 'Hide Tour Map', //The text in the hidden tour map button
tourMapText: '=', //The text in the show tour button
tourMapTitle: 'Tour Map', //Title of Tour map button
nextTextDefault: 'Next', //The text in the Next Button
prevTextDefault: 'Prev', //The text in the Prev Button
endText: 'End Tour', //The text in the End Tour Button
contDialogBtnBegin: 'Start over', //Text in the start button of continue dialog
contDialogBtnContinue: 'Continue', //Text in the continue button of continue dialog
introDialogBtnStart: 'Start', //Text in the start button of introduction dialog
introDialogBtnCancel: 'Cancel', //Text in the cancel button of introduction dialog
modalIntroType: 'Tour Intro', //Type Name of intro dialog
modalContinueType: 'Unfinished Tour' //Type Name of continue dialog
},
create: function () { }, //Triggered when the iGuider is created
start: function () { }, //Triggered before first showing the step
progress: function (data) { }, //Triggered together with start any step
end: function () { }, //Triggered when the tour ended, or was interrupted
abort: function () { }, //Triggered when the tour aborted
finish: function () { }, //Triggered when step sequence is over
play: function () { }, //Triggered when the timer state switches to "play"
pause: function () { }, //Triggered when the timer state switches to "pause"
modalTemplate: //Modal window template
'<div class="gWidget">' +
'<div class="gCover">[modal-cover]</div>' +
'<div class="gAction">' +
'<span class="gType">[modal-type]</span>' +
'<span class="gBtn">[modal-map]</span>' +
'<span class="gBtn">[modal-close]</span>' +
'<div class="gTimer">[modal-timer]</div>' +
'</div>' +
'<div class="gScroll">' +
'<div class="gHeader">[modal-header]</div>' +
'<div class="gContent">[modal-body]</div>' +
'</div>' +
'<div class="gFooter">' +
'<span class="gPage">' +
'<span class="gPageVal">[step-value]</span>' +
'<span class="gPageTotal">[step-total]</span>' +
'</span>' +
'<span class="gBtn">[modal-prev]</span>' +
'<span class="gBtn">[modal-next]</span>' +
'<span class="gBtn">[modal-cancel]</span>' +
'<span class="gBtn">[modal-start]</span>' +
'<span class="gBtn">[modal-begin-first]</span>' +
'<span class="gBtn">[modal-begin-continue]</span>' +
'</div>' +
'</div>',
mapTemplate: //Tour Map template
'<div class="g-map-pos">' +
'<div class="gMapAction">' +
'<span class="gBtn">[map-toggle]</span>' +
'<span class="gBtn">[map-hide]</span>' +
'</div>' +
'<div class="gMapHeader">[map-header]</div>' +
'<span class="gPage">' +
'<span class="gPageVal">[step-value]</span>' +
'<span class="gPageTotal">[step-total]</span>' +
'</span>' +
'<div class="gMapContent">[map-content]</div>' +
'<div class="gMapBufer"></div>' +
'</div>',
debug: true //Display of messages in the console
});
},
"course": function () {
return iGuider({
tourID: 'UltimateCollectionCourse', //This string allows you to save data with a unique name about tour progress.
//It can be used to save information on the progress of the tour for several users.
//Or save the progress of each tour separately
tourTitle: 'The Ultimate Collection of Piano Music', //Tour title
tourSubtitle: 'Course Page Navigation',
startStep: 1, //Step from which the tour begins
overlayClickable: true, //This parameter enables or disables the click event for overlying layer
overlayColor: '#000', //Global color values of the overlay layer.
overlayOpacity: 0.5, //Global opacity values of the overlay layer.
pagination: true, //Shows the total number of steps and the current step number
registerMissingElements: true, //Shows an absent element in tour map and find this element in DOM.
textDirection: 'ltr', //Global text direction. (ltr, rtl)
shape: 0, //Global shape of highlighting. 0 - rectangle (default), 1 - circle, 2 - rounded rectangle
shapeBorderRadius: 5, //Global corner radius of rounded rectangle shape. Only when "shape" value is "2"
width: 320, //Global width of the message block
bgColor: false, //Global background color of the message block
titleColor: false, //Global title color of the message block
modalContentColor: false, //Global content color of the message block
modalTypeColor: false, //Global modal type color of the message block
paginationColor: false, //Global pagination color of the message block
timerColor: false, //Global timer color of the message block
btnColor: false, //Global buttons color
btnHoverColor: false, //Global buttons hover color
spacing: 10, //Global indent highlighting around the element
baseurl: false, //The initial portion of the URL that is common to all steps.
//Required if you specify a relative URL in the LOC parameter value.
loc: false, //Global relative/absolute path to the page for steps for which the LOC parameter is not specified.
//If the path is relative, then you must specify the "baseurl" parameter in the group of general parameters.
timer: 15000, //Global time after which an automatic switching to the next step
timerType: 'line', //Global timer shape type: 'line' or 'circle'
keyboard: true, //Tour control by keyboard buttons. Left - the previous step, right - the next step, Esc - close tour.
keyboardEvent: false, //This parameter sets the permission to trigger custom events.
intro: { //Default intro settings
enable: false, //If set to true, before the tour you will see the introductory slide, which will offer to see a tour.
title: 'Welcome to the interactive tour', //Title of introduction dialog
content: 'This tour will tell you about the main site functionalities', //Content of introduction dialog
cover: '', //Path to the cover of intro
overlayColor: false, //For intro, you can specify the different color values of the overlay layer.
overlayOpacity: false, //For intro, you can specify the different opacity values of the overlay layer.
width: false, //Width of the intro message block
bgColor: false, //Background color of the intro message block
titleColor: false, //Title color of the intro message block
modalContentColor: false, //Content color of the intro message block
modalTypeColor: false, //Modal type color of the intro message block
btnColor: false, //Buttons color of the intro message block
btnHoverColor: false //Buttons Hover color of the intro message block
},
continue: { //Default the continue message settings
enable: true, //This parameter add the ability to continue the unfinished tour.
title: 'Continue the unfinished tour?', //Title of continue dialog
content: 'Click "Continue" to start with step on which finished last time.', //Content of continue dialog
cover: '', //Path to the cover of continue message
overlayColor: false, //For continue message, you can specify the different color values of the overlay layer.
overlayOpacity: false, //For continue message, you can specify the different opacity values of the overlay layer.
width: false, //Width of the continue message block
bgColor: false, //Background color of the continue message block
titleColor: false, //Title color of the continue message block
modalContentColor: false, //Content color of the continue message block
modalTypeColor: false, //Modal type color of the continue message block
btnColor: false, //Buttons color of the continue message block
btnHoverColor: false //Buttons Hover color of the continue message block
},
tourMap: { //Default Tour Checklist settings
enable: true, //This parameter add the ability view list of steps.
position: 'right', //Checklist Position
clickable: true, //Specifies the clickability of links in the checklist of steps: true - clickable, false - disabled, or 'ready' - clickable only completed steps and current
open: true, //Specifies to show or hide the Checklist at the start of the tour
bgColor: false, //Background color of the Checklist
titleColor: false, //Title color of the Checklist
btnColor: false, //Buttons color of the checklist block
btnHoverColor: false, //Buttons hover color of the checklist block
itemColor: false, //Item color of the Checklist
itemHoverColor: false, //Item hover color of the Checklist
itemActiveColor: false, //Item Active color of the Checklist
itemActiveBg: false, //Item Active BG color of the Checklist
itemNumColor: false, //Item Number color of the Checklist
checkColor: false, //Check color of the Checklist
checkReadyColor: false //Check Ready color of the Checklist
},
steps: [
{
"title": "Course Overview",
"content": "This section provides an overview of the course you're viewing. Discover what this course offers and begin your learning journey from here.",
"target": ".help-course-hero-section",
"overlayColor": "#000055",
"shape": 0,
"timer": 15000
},
{
"title": "Start or Resume Learning",
"content": "Click this button to dive into the course. If it's your first visit, you'll start with the first lesson. If you've been here before, you'll pick up right where you left off.",
"target": ".help-resume-lesson-button",
"overlayColor": "#000055",
"shape": 0,
"timer": 15000
},
{
"title": "Track Course Progress",
"content": "This progress bar shows how much of this course has been completed. It's a great way to visualize your journey through the course material.",
"target": ".help-course-progress",
"overlayColor": "#000",
"shape": 0,
"timer": 15000
},
{
"title": "Understand the Course",
"content": "Here's where you'll find the course description. Learn about the course objectives, the content covered, and what skills you'll develop as you go through it.",
"target": ".help-course-description-text",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
},
{
"title": "Need a Hand? We're Here to Help!",
"content": "Click this button to activate the help tour on any page and get assistance whenever you need it.",
"target": ".help-help-bottom-nav-button",
"overlayColor": "#000",
"shape": 1,
"timer": 15000
}
],
lang: { //Default language settings
cancelTitle: 'Cancel Tour', //The title in the cancel tour button
cancelText: '×', //The text in the cancel tour button
hideText: 'Hide Tour Map', //The text in the hidden tour map button
tourMapText: '=', //The text in the show tour button