Še 0.0 do brezplačne dostave

document.addEventListener("DOMContentLoaded", function () { const videoContainer = document.querySelector('.video-container'); const aspectRatio = 16 / 9; // Standardno razmerje videoposnetka function adjustVideoHeight() { const containerWidth = videoContainer.offsetWidth; const newHeight = containerWidth / aspectRatio; videoContainer.style.height = `${newHeight}px`; } // Prilagodi višino ob nalaganju in spreminjanju velikosti okna adjustVideoHeight(); window.addEventListener('resize', adjustVideoHeight); });