-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
25 lines (21 loc) · 702 Bytes
/
app.js
File metadata and controls
25 lines (21 loc) · 702 Bytes
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
$(() => {
$('#body').css('min-height', screen.height);
$('#work-link').click(function() {
$('div.work-cont').show('slow');
$('div.about-content').hide('slow');
$('div.contact-content').hide('slow');
$('.header-ani').css('color', '#CBC5EA');
});
$('#about-link').click(function() {
$('div.about-content').show('slow');
$('div.work-cont').hide('slow');
$('div.contact-content').hide('slow');
$('.header-ani').css('color', '#D46A6A');
});
$('#contact-link').click(function() {
$('div.contact-content').show('slow');
$('div.work-cont').hide('slow');
$('div.about-content').hide('slow');
$('.header-ani').css('color', 'aquamarine');
});
});