1

Create load.html

This commit is contained in:
Evan Pratten 2017-08-29 14:48:25 -04:00 committed by GitHub
parent 4e378ba9c3
commit 49b1ab28ee

7
desktop/load.html Normal file
View File

@ -0,0 +1,7 @@
<div id = "myDiv"><img id = "myImage" src = "../img/load.gif" style="width:100%;"></div><br>
<script type = "text/javascript">
setTimeout(function(){
document.getElementById("myDiv").style.display="none";
}, 6000);
</script>