-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
34 lines (26 loc) · 906 Bytes
/
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
// JavaScript Document
$(document).ready(function(){
$(".day").hide();
$("h3").hover(function() {
$(this).css({'background-color':'#bdd73c', 'color':'#5c8927'});
}, function() {
$(this).css({'background-color':'#ace3fa', 'color':'#008ab3'});
});
$("h3").toggle(function() {
$("+.day", this).show(300);
$(this).css({'background-color':'#FCBA63', 'color':'#d67f2a'});
$(this).hover(function() {
$(this).css({'background-color':'#e96f34', 'color':'#b31b08'});
}, function() {
$(this).css({'background-color':'#FCBA63', 'color':'#d67f2a'});
});
}, function() {
$("+.day", this).hide(300);
$(this).css({'background-color':'#ace3fa', 'color':'#008ab3'});
$(this).hover(function() {
$(this).css({'background-color':'#bdd73c', 'color':'#5c8927'});
}, function() {
$(this).css({'background-color':'#ace3fa', 'color':'#008ab3'});
});
});
});