Skip to content

Career Opportunities

  • Please complete the form to view our product brochure.

  • This field is for validation purposes and should be left unchanged.
Blentech
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.

document.addEventListener("DOMContentLoaded", function() { const video = document.getElementById('video-on-scroll'); // Check if the video element exists on the page if (video) { // Mute the video - this is essential for autoplay to work video.muted = true; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { // Play the video when it's in view video.play(); } else { // Pause the video when it's out of view video.pause(); } }); }, { threshold: 0.5 // Trigger when 50% of the video is visible }); observer.observe(video); } });