à l'aide!!! pb création site internet
Fermé
manonhtml
Messages postés
5
Date d'inscription
mercredi 2 mars 2016
Statut
Membre
Dernière intervention
3 mars 2016
-
2 mars 2016 à 13:13
anthony - 3 mars 2016 à 11:04
anthony - 3 mars 2016 à 11:04
A voir également:
- à l'aide!!! pb création site internet
- Site de telechargement - Accueil - Outils
- Création site internet - Guide
- Site comme coco - Accueil - Réseaux sociaux
- Url site internet - Guide
- Site inaccessible - Guide
2 mars 2016 à 14:36
Nous aimerions plutôt plusieurs images dans le cadre (4).
Merci
2 mars 2016 à 14:40
http://www.css3create.com/Galerie-photo-hover-avec-transition-CSS
Sinon il reste toujours la solution du tableau avec 2 lignes et 2 colonnes mais c'est moins propre et cela s'adapte moins bien aux différents support.
2 mars 2016 à 15:16
Mais les images apparaissent les unes en dessous des autres, comme si elles était positionner en carte. je dois bouger les marges?
2 mars 2016 à 15:29
comme ça sans le code complet de la page (html/css) difficile à dire.
2 mars 2016 à 15:35
<div class="photos">
<ul>
<li>
<a href="#">
<img src="IMG_3363.JPG" alt="IMG_3363.JPG"/>
<strong>Blabla</strong>
</a>
</li>
<li>
<a href="#">
<img src="IMG_3930.JPG" alt="IMG_3930.JPG"/>
<strong>Blabla</strong>
</a>
</li>
<li>
<a href="#">
<img src="Apéro.JPG" alt="Apéro.JPG"/>
<strong>Blabla</strong>
</a>
</li>
<li>
<a href="#">
<img src="DSC_0023.JPG" alt="DSC_00263.JPG"/>
<strong>Blabla</strong>
</a>
</li>
</ul>
</div>
.ul li {
position:relative;
float:left;
width:100px;
height:100px;
padding:10px;
style:none;
}
.ul li:nth-child(4n) {clear:left;}
.ul li a {
display:block;
overflow:hidden;
width:100px;
height:100px;
margin-top:0px;
margin-left:0px;
border:0px solid rgba(0,0,0,0.7);
transition-property:width, height, margin, z-intex, border;
transition-duration:0,4s;
}
ul li a:hover{
position:absolute;
width:200px;height:200px;
margin-top:-56px;margin-left:-56px;
z-index:100;
border:6px solid rgba(0,0,0,0.7);
}
ul li a img{
position:absolute;
width:100px;height:100px;z-index:20;
transition-property:width,height,z-index;
transition-duration:0.4s;
}
ul li a:hover img{
width:200px;height:200px;
z-index:100;
}
Mais déjà merci beaucoup,!