This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplatemo-scripts.js
85 lines (79 loc) · 1.81 KB
/
templatemo-scripts.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
$(document).ready(function() {
// Single Page Nav for highlighting nav items
$("#tmMainNav").singlePageNav();
// Carousel in Our Work section
$(".tm-gallery").slick({
dots: true,
infinite: false,
arrows: false,
speed: 300,
slidesToShow: 4,
slidesToScroll: 2,
responsive: [
{
breakpoint: 1600,
settings: {
arrows: false,
slidesToShow: 3,
slidesToScroll: 1,
infinite: true,
dots: true
}
},
{
breakpoint: 1200,
settings: {
arrows: false,
slidesToShow: 2,
slidesToScroll: 1
}
},
{
breakpoint: 991,
settings: {
arrows: false,
slidesToShow: 3,
slidesToScroll: 1
}
},
{
breakpoint: 767,
settings: {
arrows: false,
slidesToShow: 2,
slidesToScroll: 1
}
},
{
breakpoint: 480,
settings: {
arrows: false,
slidesToShow: 1,
slidesToScroll: 1
}
}
// You can unslick at a given breakpoint now by adding:
// settings: "unslick"
// instead of a settings object
]
});
// Image Pop Up
$(".tm-gallery").magnificPopup({
delegate: "a", // child items selector, by clicking on it popup will open
type: "image",
gallery: { enabled: true }
});
$(".navbar-toggler").on("click", function(e) {
$(".tm-sidebar").toggleClass("show");
e.stopPropagation();
});
$("html").click(function(e) {
var sidebar = document.getElementById("tmSidebar");
if (!sidebar.contains(e.target)) {
$(".tm-sidebar").removeClass("show");
}
});
$("#tmMainNav .nav-link").click(function(e) {
$(".tm-sidebar").removeClass("show");
});
});