You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
HTML
65 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="icon" href="./src/assets/logo.png" />
|
|
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
|
|
<meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1.0, user-scalable=no">
|
|
<script type="text/javascript" src="/webRtcPlayer.js"></script>
|
|
<script type="text/javascript" src="/app.js"></script>
|
|
<script type="module" src="/src/main.js"></script>
|
|
<script src="/jquery-3.6.0.min.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="/player.css">
|
|
<title>PLANTAI</title>
|
|
</head>
|
|
<body>
|
|
<div id="playerUI">
|
|
<div id="player"></div>
|
|
<div id="play2d"></div>
|
|
</div>
|
|
<div id="app"></div>
|
|
<script>
|
|
// window.onload = function(){
|
|
// // window.addEventListener("load", () => {
|
|
// load() //webrtc
|
|
// // clickData()
|
|
// // })
|
|
|
|
// console.log(window)
|
|
// }
|
|
</script>
|
|
<style>
|
|
body {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
background-size: cover;
|
|
user-select:none;
|
|
min-height: 94.074075vh;
|
|
background-color: #fff;
|
|
}
|
|
|
|
#playerUI {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
position: absolute;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
z-index: 12;
|
|
}
|
|
|
|
#app {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
#play2d{
|
|
background-image: url('./src/assets/2dBG.png');
|
|
background-repeat: no-repeat;
|
|
display:none;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|