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
| <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container {
position: relative;
width: 20em;
margin: auto;
overflow: hidden;
}
.container img {
display: block;
width: 100%;
height: auto;
}
.container .text {
position: absolute;
top: 100%;
width: 100%;
margin: 0;
padding: 1em 0;
text-align: center;
font-size: 1.5em;
color: white;
background: #F00;
transition: .5s ease;
}
.container:hover .text {
transform: translate(0,-100%);
}
</style>
</head>
<body>
<div class="container">
<img src="https://www.developpez.net/forums/avatars/256045-jreaux62.gif" alt="Avatar">
<p class="text">jreaux62</p>
</div>
</body>
</html> |
Partager