Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<div class="close">
<div onclick="document.querySelector('.lightbox').style.display = 'none'">
<span></span><span></span>
</div>
</div>
<img onclick="lightbox(this)" class="small-picture" alt="Es ist ein Fehler aufgetreten" src="https://assets.pixolum.com/blog/wp-content/uploads/2016/10/focus-stacking-scharfe-bilder-1.jpg">
<style>
/* <![CDATA[ */
* {
margin: 0;
padding: 0;
}
body {
background: white;
overflow: auto;
text-align: center;
}
.lightbox {
display: none;
position: fixed;
z-index: 10000;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
top: 0;
left: 0;
background: rgba(0,0,0,0.7);
}
.lightbox > div {
position: relative;
}
.lightbox img {
border-radius: 5px;
width: 90%;
max-height: 90%;
max-width: 800px;
}
.small-picture {
width: 100%;
max-width: 300px;
max-height: 90vH;
cursor: pointer;
}
.close {
color: white;
position: absolute;
top: 0;
right: 0;
}
.close > div {
position: relative;
cursor: pointer;
}
.close span {
display: block;
width: 5px;
height: 30px;
background: white;
border-radius: 100px;
position: absolute;
top: -15px;
right: 38px;
}
.close > div > span:first-child {
transform: rotate(45deg);
}
.close > div > span:last-child {
transform: rotate(-45deg);
}
@media only screen and (max-height: 400px) {
.small-picture {
width: 100%;
max-width: 300px;
max-height: 90vH;
width: auto;
}
}
@media only screen and (max-height: 500px) {
.lightbox img {
max-width: 90%;
max-height: 90vH;
width: auto;
}
}
/*]]>*/
</style>
<script>
function lightbox(im) {
document.querySelector(".lightbox img").src = im.src;
document.querySelector(".lightbox").style.display = "flex";
}
</script>
Leider doch. Ich würde dir empfehlen, einen vernünftigen Webspace zu nutzen und wenn es kostenlos bleiben soll, dann tut es auch z.B. bplaced. Und anstatt sich mit einer Lightbox rumzuschlagen macht es mehr Sinn, sich mit HTML und CSS ernsthaft zu beschäftigen und dann Lightbox2 zu nutzen. Unter Strich hast du dann deutlich mehr davon.Und ich finde für solche Leute ist Jimdo doch alles andere als "der letzte Müll".
Ups, diese Entwicklung von Fancybox ist an mir vorbeigegangen, danke für die Info.Statt Lightbox 2 würde ich jedoch Fancybox empfehlen, denn diese lässt sich auf einem Mobilgerät durch Wischen bedienen, so wie man es dort gewöhnt ist.