Bonjour,
J'ai bricolé tant bien que mal un site généreusement pourvu en lightboxes que je cherche à fermer par un simple clic au dehors et non une affreuse croix (sorry pour les amateurs).
Je suis novice et ne m'y retrouve pas trop entre les différentes propositions glanées sur le net...
Un grand merci d'avance pour tout indice
L'adresse du site :
http://dong-xi.net/
et le bout de code de la lightbox:
J'ai bricolé tant bien que mal un site généreusement pourvu en lightboxes que je cherche à fermer par un simple clic au dehors et non une affreuse croix (sorry pour les amateurs).
Je suis novice et ne m'y retrouve pas trop entre les différentes propositions glanées sur le net...
Un grand merci d'avance pour tout indice
L'adresse du site :
http://dong-xi.net/
et le bout de code de la lightbox:
HTML SCSS Result
Edit on
/* Styles the lightbox, removes it from sight and adds the fade-in transition */
.lightbox-target {
position: fixed;
top: -100%;
width: 100%;
background:;
width: 100%;
background-opacity: %;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
}
/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */
.lightbox-target img {
position: fixed;
bottom: 0px;
left: 15%;
max-height: 0%;
max-width: 0%;
border: 0px solid white;
box-shadow: none;
box-sizing: border-box;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}
/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */
.lightbox-target:target {
opacity: 1;
top: 0;
bottom: 0;
}
.lightbox-target:target img {
position: fixed;
left:15%;
bottom:0%;
max-height: 60%;
max-width: 70%;
}
.lightbox-target:target a.lightbox-close {
top: 0px;
}
.lienAfficher
{
cursor: pointer;
}