Skip to content

Instantly share code, notes, and snippets.

@ricardoreis
Created October 1, 2018 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricardoreis/a53bc1f076f9531874eec80556ef6893 to your computer and use it in GitHub Desktop.
Save ricardoreis/a53bc1f076f9531874eec80556ef6893 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="jquery-3.3.1.min.js"></script>
</head>
<body style="margin:0px; padding:0px">
<video autoplay>
<source src="coke.mp4" type="video/mp4">
</video>
<script>
$.ajax({
url: "start_pump.php",
success: function() {
setTimeout(function(){stopPump()}, 20000);
}
});
function stopPump(){
$.ajax({
url: "stop_pump.php",
success: function() {
window.location = "index.html";
}
});
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment