Drei Gorillas im Pool
3 Gorillas langweilen sich am leeren Schwimmbecken

„Waldbad – Auch ein Stück Heimat“

Verwahrlostes Becken / Stockfoto

„Waldbad bleibt Waldbad!“

Besprechung unter Wasser, KI-generieres Bild

Ein junges Päarchen küsst sich im Schwimmbecken unter Wasser

Dokumentation WordPress-Theme 2024 / Waldbad

Slider oben: Gutenslider

Backend CSS für Admin

div.interface-navigable-region .wellenbecken

CD-Vorgaben

Fotorahmen: Radius 8px, Breite 2px

Fehlerbehebungen

  • Kadence Block Voreinstellungen Google Fonts auf WAHR wg. DSGVO
  • Kadence wechselhaftes Verhalten support angefragt 20.4.

Custom CSS per Plugin

/*Quelle https://codepen.io/tedmcdo/pen/PqxKXg */

/* CSS Code für unterschiedliche Elternblöcke */

/*Gutenslider */
/* bakup: @media only screen and (min-width: 601px) and (max-width: 960px) position: absolute; z-index:-10*/

@media (max-width: 960px) {
/* .swiper-wrapper { height: 100% !important; border: 3px solid green} */
.coverwellenbecken .wp-block-cover__inner-container {
/* height: 60vh !important; */
}
}

@media (max-width: 960px) {
.has-global-padding {
padding-left: 25px;
padding-right: 25px;
}
}


/* blöcke markieren mit border */
.coverwellenbecken .wp-block-cover__inner-container > div:first-child {
/* border: 8px solid yellow; */
}


/*Text vor Wellen positionieren per z-index */
.coverwellenbecken .wp-block-cover__inner-container {
position: relative;
/* border-left: 8px solid red;*/
height: 90vh !important;
}




/* CSS Code nur für HTML-Einschub */
.wellenbecken {
height: 30vh;
width:100%;
position: absolute; /* Wellen nach hinten */
z-index: 5; /* Wellen nach hinten */
bottom: 0;
max-width: 100% !important;
overflow: hidden;
}

.welle {
background-image: url(https://www.waldbad-waldkraiburg.de/wp-content/uploads/2024/02/wellen-animation4.png);
background-repeat: repeat-x;
background-size: 25% 100%;
position: absolute;
bottom: 0px;
left: 0px;
width: 400%;
max-width: 400% !important;
height: 100%;
animation: wave 33s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
transform: translate3d(0, 0, 0);
opacity: 0.71;
}

/* Headline und Subline nach vorne */
.textwellenbecken {
position: absolute; /* Wellen nach hinten */
z-index: 15; /* Wellen nach hinten */
bottom: 0;
width: 100%;
max-width: 100% !important;
}

.welle:nth-of-type(2) {
background-image: url(https://www.waldbad-waldkraiburg.de/wp-content/uploads/2024/02/wellen-animation4.png);
bottom: -20px;
left: 0px;
animation: wave 22s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -0.9s infinite;
}

.welle:nth-of-type(3) {
background-image: url(https://www.waldbad-waldkraiburg.de/wp-content/uploads/2024/02/wellen-animation4.png);
bottom: -40px;
left: 0px;
animation: wave 44s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.8s infinite, swell 7s ease -1.5s infinite;
}

@keyframes wave {
0% {
margin-left: 0;
}
100% {
margin-left: -2600px;
}
}

@keyframes swell {
0%, 100% {
transform: translate3d(0,-25px,0);
}
50% {
transform: translate3d(0,5px,0);
}
}