-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
136 lines (118 loc) · 4.18 KB
/
script.js
File metadata and controls
136 lines (118 loc) · 4.18 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
// Share button
const shareBtn = document.querySelector(".share-btn");
shareBtn.addEventListener("click", (event) => {
if (navigator.share) {
navigator.share({
title: "This is an amazing LinkTree Website of Chandan Chaudhary 😍",
url: "https://chandanchaudhary-linktree.netlify.app/",
}).then(() => console.log("Thanks for Sharing"))
.catch((err) => console.log(err));
} else {
alert("Something Wrong");
}
});
// Social share buttons
// Portfolio Share
const portfolioShare = document.querySelector("#portfolio-share");
portfolioShare.addEventListener("click", (event) => {
if (navigator.share) {
navigator.share({
title: "Chandan Chaudhary's Portfolio Wbesite.",
url: "https://chandanchaudhary-portfolio.netlify.app/",
}).then(() => console.log("Thanks for Sharing"))
.catch((err) => console.log(err));
} else {
alert("Something Wrong");
}
});
// Linkedin Share
const linkedinShare = document.querySelector("#linkedin-share");
linkedinShare.addEventListener("click", (event) => {
if (navigator.share) {
navigator.share({
title: "Chandan Chaudhary's Linkedin Profile.",
url: "https://www.linkedin.com/in/chandan--chaudhary/",
}).then(() => console.log("Thanks for Sharing"))
.catch((err) => console.log(err));
} else {
alert("Something Wrong");
}
});
// Github Share
const githubShare = document.querySelector("#github-share");
githubShare.addEventListener("click", (event) => {
if (navigator.share) {
navigator.share({
title: "Chandan Chaudhary's Github Profile.",
url: "https://github.com/iamchandanchaudhary",
}).then(() => console.log("Thanks for Sharing"))
.catch((err) => console.log(err));
} else {
alert("Something Wrong");
}
});
// Website Share
const websiteShare = document.querySelector("#website-share");
websiteShare.addEventListener("click", (event) => {
if (navigator.share) {
navigator.share({
title: "Chandan Chaudhary's Website.",
url: "https://c2explains-chandanchaudhary.onrender.com",
}).then(() => console.log("Thanks for Sharing"))
.catch((err) => console.log(err));
} else {
alert("Something Wrong");
}
});
// YouTube Share
const youtubeShare = document.querySelector("#youtube-share");
youtubeShare.addEventListener("click", (event) => {
if (navigator.share) {
navigator.share({
title: "Chandan Chaudhary's YouTube Channel.",
url: "https://www.youtube.com/@c2explains",
}).then(() => console.log("Thanks for Sharing"))
.catch((err) => console.log(err));
} else {
alert("Something Wrong");
}
});
// Instagram Share
const instagramShare = document.querySelector("#instagram-share");
instagramShare.addEventListener("click", (event) => {
if (navigator.share) {
navigator.share({
title: "Chandan Chaudhary's Instagram Profile",
url: "https://www.instagram.com/_.chandan_chaudhary/?hl=en",
}).then(() => console.log("Thanks for Sharing"))
.catch((err) => console.log(err));
} else {
alert("Something Wrong");
}
});
// 2nd YouTube Share
const youtubeShare2 = document.querySelector("#youtube2-share");
youtubeShare2.addEventListener("click", (event) => {
if (navigator.share) {
navigator.share({
title: "Chandan Chaudhary's YouTube Channel.",
url: "https://www.youtube.com/@CreativeCMS",
}).then(() => console.log("Thanks for Sharing"))
.catch((err) => console.log(err));
} else {
alert("Something Wrong");
}
});
// Replit share
const replitShare = document.querySelector("#replit-share");
replitShare.addEventListener("click", (event) => {
if (navigator.share) {
navigator.share({
title: "Chandan Chaudhary's Replit Profile.",
url: "https://replit.com/@ChandanChaudha3",
}).then(() => console.log("Thanks for Sharing"))
.catch((err) => console.log(err));
} else {
alert("Something Wrong");
}
});