Magnets

The Magnic Light technology can be efficiently implemented thanks to extremely strong neodymium magnets. The neodymium magnets used have an energy density of 52MGOe (magnetization N52). This is currently the highest industrially used magnetization. The magnets have a specially adapted shape and are built up in a special arrangement. The magnetization of neodymium magnets is almost unlimited in time, while other types of magnets can lose their magnetic force over time without any external influences. The standard magnetic wheel shown here works on all metal rims - not just on aluminum rims but also on magnetic steel rims and disc brakes.

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); }); ``` });