TAG
JavaScript
Result
Run
License
<video id="player" controls> <source src="/assist/resources/media/video/movie.mp4" type="video/mp4" /> </video> <p> <input id="width" type="range" min="200" max="400" step="1" value="200" /> <span>200</span> </p>
window.addEventListener("load", function() { const $elPlayer = document.getElementById("player"); const $elWidth = document.getElementById("width"); $elWidth.addEventListener("input", e => { let width = e.currentTarget.value; $elPlayer.width = width; e.currentTarget.nextElementSibling.textContent = width; }); $elWidth.dispatchEvent(new Event("input")); });
Console
expand_less
License
License
by DevDic
Close