Create index-enter.html

This commit is contained in:
Innovation Inc 2019-09-19 14:02:54 -05:00 committed by GitHub
parent 32f9b7ba43
commit 985837e60f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

83
index-enter.html Normal file
View file

@ -0,0 +1,83 @@
<html>
<head>
<title>DremJS Market</title>
<style>
.box-blue {
margin:0 0 5px;
overflow:hidden;
padding:5px;
background-color:#FFFFFF;
border:1px solid #8b8b8b;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.box-blue-emb-left {
margin:0 0 0px;
overflow:hidden;
padding:0px;
background-color:#009ac7;
border-radius: 5px;
position: absolute;
left: 10px;
width: 48%;
text-align: center;
}
.box-blue-emb-right {
margin:0 0 0px;
overflow:hidden;
padding:0px;
background-color:#009ac7;
border-radius: 5px;
position: absolute;
right: 10px;
width: 48%;
text-align: center;
}
.buttonWrapper {
width:95%;
margin: auto;
text-align: center;
}
.rel-uemb {
position: relative;
left: 25px;
}
.rel-emb {
position: absolute;
top: 2px;
}
.cwhite {
color: #FFFFFF;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
img {
padding: 0;
display: block;
margin: 0 auto;
max-height: 100%;
max-width: 100%;
}
</style>
</head>
<body>
<script>
function clickSound(page) {
window.globalPage=page;
var audio = new Audio('https://github.com/sparrdrem/DremJS-Market/blob/master/select.wav?raw=true');
audio.play();
setTimeout(gotoPage, 2000);
}
function gotoPage(page) {
window.location.href = globalPage;
}
</script>
<div class="box-blue">
<iframe href="index-apps.html" width="98%" height="98%"></iframe>
</div>
</body>
</html>