-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
39 lines (36 loc) · 1.04 KB
/
menu.html
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
<!-Menu for website-->
<div class="header">
<a href="http://Zyluss.github.io">
<img onmouseover="onHover();" onmouseout="offHover();" src="http://imgur.com/q4vB2nr.png">
</a>
<a href="http://Zyluss.github.io">
<img class="mousevent" onmouseover="onHover();" onmouseout="offHover();" src="http://dummyimage.com/200x100/000000/999&text=Home">
</a>
<a href="http://Zyluss.github.io/social">
<img class="mousevent" onmouseover="onHover();" onmouseout="offHover();" src="http://dummyimage.com/200x100/000000/999&text=Social">
</a>
<a href="http://Zyluss.github.io/other">
<img class="mousevent" onmouseover="onHover();" onmouseout="offHover();" src="http://dummyimage.com/200x100/000000/999&text=Other">
</a>
</div>
<style>
.header
{
text-align:left;
background-color:#818991;
padding-left:2%;
padding-right:2%;
padding-bottom:2%;
padding-top:2%;
}
.mousevent{
color:blue;
transition: color 0s;
border-bottom-color:black;
}
.mousevent:hover{
transition: border-bottom-color 1s;
border-bottom-color:#903;
border-bottom-style:solid;
}
</style>