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
| <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>[...]</title>
<style type="text/css">
.vignette{
position: relative;
}
.vignette .miniature{
background: #e0e0e0;
border : 1px solid #c0c0c0;
width: 200px;
height: 150px;
display: none;
}
.vignette a:hover .miniature{
position: absolute;
display: block;
top: 0px;
left: 100px;
}
</style>
</head>
<body>
<div class="vignette">
<br><a href="#">photo_001<img src="photo_001.jpg" alt="photo_001" class="miniature"></a>
<br><a href="#">photo_002<img src="photo_002.jpg" alt="photo_002" class="miniature"></a>
<br><a href="#">photo_003<img src="photo_003.jpg" alt="photo_003" class="miniature"></a>
</div>
</body>
</html> |