Skip to content

Commit

Permalink
Update demo.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mingyuliutw committed Jun 20, 2019
1 parent 7c4bee2 commit 3d4743a
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions docs/demo.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
<html>
<script>

function getRandomInt(max) { return Math.floor(Math.random() * Math.floor(max)); }
var random_number = getRandomInt(1000000000);

<head>
</head>

<iframe src="demo_iframe.html" height="100%" width="1600px" style="border:none;"></iframe>


</html>
if (random_number % 5 == 0){
window.location.replace("http://3.16.206.30/");
} else if (random_number % 5 == 1){
window.location.replace("http://52.12.58.174/");
} else if (random_number % 5 == 2){
window.location.replace("http://54.71.84.47/");
} else if (random_number % 5 == 3){
window.location.replace("http://34.209.64.66/");
} else {
window.location.replace("http://18.234.114.149/");
}

</script>

0 comments on commit 3d4743a

Please sign in to comment.