Team

Dirk Strothmann
Dirk StrothmannCEO
Responsible for everything from hardware development to design, marketing, finance, purchasing, sales & website,...
Jörn StrothmannCo-partner
Electronics & hardware development Prototype development and function test
Antje Strothmann
Antje StrothmannShipping
Shipping nationally & internationally
Lisa StrothmannAerial photography
Video recordings, in-race testing, in-race advertising (road)
Sarah StrothmannWebsite Translation & Design
Website & translations Test in everyday use Advertising in racing use (road)
document.addEventListener("DOMContentLoaded", function() { // Alle Slides mit YouTube-Hintergrundvideos var videoBackgrounds = document.querySelectorAll('.sp-video-background'); ``` videoBackgrounds.forEach(function(bg) { var iframe = bg.querySelector('iframe'); if (!iframe) return; // Ursprüngliche src sichern var originalSrc = iframe.src; iframe.removeAttribute('src'); // Funktion zum Laden des Videos var loadVideo = function() { iframe.src = originalSrc + '&autoplay=1'; // Autoplay aktivieren // Optional: iframe sichtbar machen, falls ausgeblendet iframe.style.display = 'block'; }; // Prüfen, ob Slide sichtbar ist var observer = new IntersectionObserver(function(entries, observer) { entries.forEach(function(entry) { if (entry.isIntersecting) { loadVideo(); observer.unobserve(entry.target); // nur einmal laden } }); }, { threshold: 0.25 }); // 25% sichtbar observer.observe(bg); }); ``` });