-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
61 lines (56 loc) · 1.25 KB
/
index.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
$(document).ready(function() {
$("#hidden1").hover(function() {
$(this).css("color","black");
},
function() {
$(this).css("color","grey");
});
});
// $(document).ready(function(e) {
// $("h1").hover(function(){
// $(this).css("background-color", "yellow");
// }, function(){
// $(this).css("background-color", "pink");
// });
// // your code here
// });
$(document).ready(function() {
$("#hidden2").hover(function() {
$(this).css("color","black");
},
function() {
$(this).css("color","grey");
});
});
$(document).ready(function() {
$("#hidden3").hover(function() {
$(this).css("color","black");
},
function() {
$(this).css("color","grey");
});
});
$(document).ready(function() {
$("#hidden4").hover(function() {
$(this).css("color","black");
},
function() {
$(this).css("color","grey");
});
});
$(document).ready(function() {
$("#hidden5").hover(function() {
$(this).css("color","black");
},
function() {
$(this).css("color","grey");
});
});
$(document).ready(function() {
$("#last").hover(function() {
$(this).animate({bottom: '25px'});
},
function() {
$(this).animate({top: '25px'});
});
});