-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
58 lines (42 loc) · 1.82 KB
/
script.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
$('button#btn-about-me').click(function() {
if (!$('div#about-me').hasClass('hidden')) {
$('div.tab-section').addClass('hidden');
$('button.btn-tab').removeClass('text-white');
$('button.btn-tab').removeClass('bg-gray-700');
$('button#btn-about-me').addClass('bg-gray-700');
$('button#btn-about-me').addClass('text-white');
$('button#btn-about-me').addClass('rounded-l-md py-3 px-3');
$('div#about-me-tab').removeClass('hidden');
}
});
$('button#btn-education').click(function() {
if (!$('div#education').hasClass('hidden')) {
$('div.tab-section').addClass('hidden');
$('button.btn-tab').removeClass('text-white');
$('button.btn-tab').removeClass('bg-gray-700');
$('button#btn-education').addClass('bg-gray-700');
$('button#btn-education').addClass('text-white');
$('div#education-tab').removeClass('hidden');
}
});
$('button#btn-work').click(function() {
if (!$('div#work').hasClass('hidden')) {
$('div.tab-section').addClass('hidden');
$('button.btn-tab').removeClass('text-white');
$('button.btn-tab').removeClass('bg-gray-700');
$('button#btn-work').addClass('bg-gray-700');
$('button#btn-work').addClass('text-white');
$('div#work-tab').removeClass('hidden');
}
});
$('button#btn-others').click(function() {
if (!$('div#others').hasClass('hidden')) {
$('div.tab-section').addClass('hidden');
$('button.btn-tab').removeClass('text-white');
$('button.btn-tab').removeClass('bg-gray-700');
$('button#btn-others').addClass('bg-gray-700');
$('button#btn-others').addClass('text-white');
$('button#btn-others').addClass('rounded-r-md py-3 px-3');
$('div#others-tab').removeClass('hidden');
}
});