1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| <!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta http-equiv="cache-control" content="public, max-age=1">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Daniel Hagnoul">
<title>Test</title>
<style>
</style>
<script>
'use strict';
document.addEventListener( 'DOMContentLoaded', ev => {
}, false );
window.addEventListener( 'load', ev => {
let
n = 1,
image = new Image();
function get_image(){
image.src = "http://danielhagnoul.developpez.com/images/boule" + n + ".png";
image.onload = function(){
document.querySelector( "#imgBoules" ).src = image.src;
};
if ( n < 8 ){
n++;
setTimeout( function(){
get_image();
}, 1000 );
}
}
get_image();
}, false );
</script>
</head>
<body>
<main>
<img id="imgBoules">
</main>
</body>
</html> |
Partager