File size: 16,117 Bytes
0d4c0dd | 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 | <!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heilpädagoge (w/m/d) gesucht – mit Herz für Kinder!</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');
body {
font-family: 'Open Sans', sans-serif;
}
.carousel-container {
width: 1080px;
height: 1080px;
position: relative;
overflow: hidden;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.slide {
width: 100%;
height: 100%;
position: absolute;
transition: transform 0.5s ease;
padding: 80px;
box-sizing: border-box;
}
.slide-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.1;
}
.dots-container {
position: absolute;
bottom: 40px;
left: 0;
right: 0;
display: flex;
justify-content: center;
gap: 12px;
}
.dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: white;
opacity: 0.5;
cursor: pointer;
transition: all 0.3s ease;
}
.dot.active {
opacity: 1;
transform: scale(1.2);
}
.highlight-box {
background-color: rgba(255,255,255,0.8);
border-radius: 20px;
padding: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.icon-circle {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.btn {
display: inline-block;
padding: 15px 30px;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-100 flex items-center justify-center min-h-screen p-4">
<div class="carousel-container bg-white">
<!-- Slide 1 -->
<div class="slide" id="slide1">
<div class="slide-bg" style="background-color: #FFB347;"></div>
<div class="flex flex-col h-full">
<div class="flex-1 flex flex-col items-center justify-center text-center">
<div class="highlight-box max-w-2xl">
<div class="flex justify-center mb-6">
<div class="icon-circle bg-amber-100 text-amber-600">
<i class="fas fa-heart text-3xl"></i>
</div>
</div>
<h1 class="text-5xl font-bold mb-6 text-amber-700" style="font-family: 'Montserrat', sans-serif;">Heilpädagoge (w/m/d) gesucht</h1>
<h2 class="text-3xl mb-8 text-amber-600" style="font-family: 'Montserrat', sans-serif;">mit Herz für Kinder!</h2>
<div class="text-xl mb-8 text-gray-700">
<p class="mb-4">Inklusives Projekt an der Grundschule Sauerlach (OGTS)</p>
<p class="font-semibold">Minijob – auch für Wiedereinsteiger*innen</p>
</div>
<div class="absolute bottom-20 left-0 right-0 flex justify-center">
<div class="floating">
<i class="fas fa-angle-down text-3xl text-amber-500"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Slide 2 -->
<div class="slide" id="slide2">
<div class="slide-bg" style="background-color: #77DD77;"></div>
<div class="flex flex-col h-full">
<div class="flex-1 flex flex-col items-center justify-center">
<div class="highlight-box max-w-2xl">
<h2 class="text-4xl font-bold mb-8 text-emerald-700 text-center" style="font-family: 'Montserrat', sans-serif;">Das erwartet dich:</h2>
<ul class="space-y-6 text-xl text-gray-700">
<li class="flex items-start">
<div class="mr-4 mt-1 text-emerald-500">
<i class="fas fa-child-reaching text-2xl"></i>
</div>
<span>Betreuung von Kindern mit besonderem Förderbedarf</span>
</li>
<li class="flex items-start">
<div class="mr-4 mt-1 text-emerald-500">
<i class="fas fa-hands-holding-child text-2xl"></i>
</div>
<span>Unterstützung der Heilpädagogin im Alltag</span>
</li>
<li class="flex items-start">
<div class="mr-4 mt-1 text-emerald-500">
<i class="fas fa-paintbrush text-2xl"></i>
</div>
<span>Mitgestaltung kreativer Angebote</span>
</li>
<li class="flex items-start">
<div class="mr-4 mt-1 text-emerald-500">
<i class="fas fa-clipboard-check text-2xl"></i>
</div>
<span>Konzeptarbeit & Verlaufsdokumentation</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Slide 3 -->
<div class="slide" id="slide3">
<div class="slide-bg" style="background-color: #AEC6CF;"></div>
<div class="flex flex-col h-full">
<div class="flex-1 flex flex-col items-center justify-center">
<div class="highlight-box max-w-2xl">
<h2 class="text-4xl font-bold mb-8 text-cyan-700 text-center" style="font-family: 'Montserrat', sans-serif;">Wir bieten dir:</h2>
<div class="grid grid-cols-2 gap-6">
<div class="bg-cyan-50 p-6 rounded-xl">
<div class="icon-circle bg-cyan-100 text-cyan-600 mx-auto">
<i class="fas fa-users text-2xl"></i>
</div>
<p class="text-center font-semibold text-lg mt-2 text-cyan-700">Ein fröhliches, engagiertes Team</p>
</div>
<div class="bg-cyan-50 p-6 rounded-xl">
<div class="icon-circle bg-cyan-100 text-cyan-600 mx-auto">
<i class="fas fa-clock text-2xl"></i>
</div>
<p class="text-center font-semibold text-lg mt-2 text-cyan-700">Flexible Arbeitszeiten</p>
</div>
<div class="bg-cyan-50 p-6 rounded-xl">
<div class="icon-circle bg-cyan-100 text-cyan-600 mx-auto">
<i class="fas fa-hand-holding-heart text-2xl"></i>
</div>
<p class="text-center font-semibold text-lg mt-2 text-cyan-700">Gemeinnütziger Träger mit Herz</p>
</div>
<div class="bg-cyan-50 p-6 rounded-xl">
<div class="icon-circle bg-cyan-100 text-cyan-600 mx-auto">
<i class="fas fa-coins text-2xl"></i>
</div>
<p class="text-center font-semibold text-lg mt-2 text-cyan-700">Faire Bezahlung</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Slide 4 -->
<div class="slide" id="slide4">
<div class="slide-bg" style="background-color: #B39EB5;"></div>
<div class="flex flex-col h-full">
<div class="flex-1 flex flex-col items-center justify-center">
<div class="highlight-box max-w-2xl text-center">
<h2 class="text-4xl font-bold mb-6 text-purple-700" style="font-family: 'Montserrat', sans-serif;">Klingt gut?</h2>
<p class="text-2xl mb-10 text-gray-700">Dann melde dich gerne – ganz unkompliziert:</p>
<div class="flex flex-col items-center space-y-6 mb-10">
<div class="flex items-center bg-purple-50 px-8 py-4 rounded-full">
<i class="fas fa-phone-alt text-2xl mr-4 text-purple-600"></i>
<span class="text-2xl font-semibold text-purple-700">08104 / 888 24 21</span>
</div>
<div class="flex items-center bg-purple-50 px-8 py-4 rounded-full">
<i class="fas fa-envelope text-2xl mr-4 text-purple-600"></i>
<span class="text-2xl font-semibold text-purple-700">info@heilpaedagogik-sauerlach.de</span>
</div>
</div>
<p class="text-2xl font-semibold text-purple-600 mb-8">Wir freuen uns auf deinen Anruf!</p>
<div class="flex justify-center">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center mr-4">
<i class="fas fa-heart text-purple-500"></i>
</div>
<div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center mr-4">
<i class="fas fa-child text-purple-500"></i>
</div>
<div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center">
<i class="fas fa-hands-helping text-purple-500"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Navigation Dots -->
<div class="dots-container">
<div class="dot active" data-slide="1"></div>
<div class="dot" data-slide="2"></div>
<div class="dot" data-slide="3"></div>
<div class="dot" data-slide="4"></div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const slides = document.querySelectorAll('.slide');
const dots = document.querySelectorAll('.dot');
let currentSlide = 0;
// Show first slide initially
showSlide(currentSlide);
// Auto-rotate slides every 5 seconds
const slideInterval = setInterval(nextSlide, 5000);
// Dot click event listeners
dots.forEach(dot => {
dot.addEventListener('click', function() {
const slideIndex = parseInt(this.getAttribute('data-slide')) - 1;
goToSlide(slideIndex);
resetInterval();
});
});
function showSlide(n) {
// Hide all slides
slides.forEach(slide => {
slide.style.transform = 'translateX(100%)';
});
// Show current slide
slides[n].style.transform = 'translateX(0)';
// Update active dot
dots.forEach(dot => dot.classList.remove('active'));
dots[n].classList.add('active');
currentSlide = n;
}
function nextSlide() {
currentSlide = (currentSlide + 1) % slides.length;
showSlide(currentSlide);
}
function goToSlide(n) {
currentSlide = n;
showSlide(currentSlide);
}
function resetInterval() {
clearInterval(slideInterval);
slideInterval = setInterval(nextSlide, 5000);
}
// Touch/swipe support for mobile
let touchStartX = 0;
let touchEndX = 0;
document.querySelector('.carousel-container').addEventListener('touchstart', e => {
touchStartX = e.changedTouches[0].screenX;
}, false);
document.querySelector('.carousel-container').addEventListener('touchend', e => {
touchEndX = e.changedTouches[0].screenX;
handleSwipe();
resetInterval();
}, false);
function handleSwipe() {
if (touchEndX < touchStartX) {
// Swipe left - next slide
nextSlide();
}
if (touchEndX > touchStartX) {
// Swipe right - previous slide
currentSlide = (currentSlide - 1 + slides.length) % slides.length;
showSlide(currentSlide);
}
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=wocef/first-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |