Moment.js Sandbox

by _kdts

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.2.1/moment.min.js"></script>
<video id="video" width="320" height="240" controls src="//clips.vorwaerts-gmbh.de/VfE_html5.mp4">
  Your browser does not support the video tag.
</video>
<div id="alert-box">Alert ! Popup</div>

CSS

#alert-box{
    display: none;
    z-index: 20;
    width: 300px;
    height: 500px;
    background-color: #fff;
    position: absolute;
    top: 10px;
    left: 30px;
}

#video{
    z-index: 10;
}

JavaScript

function do_something(e){
	console.log(e);
    setTimeout(function(){ 
    	document.getElementById("alert-box").style.display = 'block'; 
    }, 200);
}

document.getElementById("video").addEventListener('webkitfullscreenchange', do_something)
/*
document.getElementById("video").addEventListener('mozfullscreenchange', do_something)
document.getElementById("video").addEventListener('fullscreenchange', do_something)
*/