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
|
<!doctype html>
<html lang="fr-FR">
<head>
<meta charset="UTF-8" />
<title>Menu réactif</title>
<style type="text/css">
div {
width: 4em; height: 6em;
margin-bottom: -4em;
-moz-transition: margin-bottom 1s;
-o-transition: margin-bottom 1s;
-webkit-transition: margin-top 1s;
transition: margin-bottom 1s;
background-color: grey;
position: fixed;
bottom: 0;
right: 1em;
text-align: center;
color: white;
}
div:hover, div:focus, div:active {margin-bottom: 0;}
a {position: relative; top: 2em; color: white;}
b {display: block; position: relative; top: 0;}
</style>
</head>
<body>
<div>
<b>MENU</b>
<a href="#">quit</a>
</div>
</body>
</html> |
Partager