웹브라우저가 리소스를 로드할 때 주기적으로 발생한다.
networkState
속성에서 NETWORK_LOADING
상태와 동일하다.
htmlMediaElement.addEventListener("progress", handler);
htmlMediaElement.onprogress = handler;
type | progress |
---|---|
bubbles | no |
cancelable | no |
target | HTMLMediaElement |
handler | onprogress |
window.onload = function() { };