#disable forward scrubbing 썸네일형 리스트형 [JavaScript] VideoJS에서 플레이 시간까지만 이동 되도록 출처 : https://support.brightcove.com/brightcove-player-sample-disable-forward-scrubbing 123456789101112131415161718192021222324252627var percentAllowForward = 0;var videoPlayer;var disableForwardScrubbing = function(player) { player.on("timeupdate", function() { var percentPlayed = player.currentTime() / player.duration() * 100; if (percentPlayed > percentAllowForward) { percentAllowForward = per.. 더보기 이전 1 다음