content/index.html

48 lines
1020 B
HTML

<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Content</title>
<script type="module">
document.documentElement.classList.remove('no-js');
document.documentElement.classList.add('js');
</script>
<style>
*,body,html{
margin: 0;
padding: 0;
}
html,body{
background: #000;
max-width: 100vw;
width: 100vw;
height: 100vh;
max-height: 100vh;
overflow-x: hidden;
overflow-y: hidden;
}
#display,#video{
width: 100vw;
height: auto;
}
#start{
display: block;
border: 1px solid #fff;
border-radius: 0;
color: #fff;
background: #000;
}
</style>
</head>
<body>
<canvas id="display" width="19" height="14"></canvas>
<!--<canvas id="video"></canvas>-->
<div id="data"></div>
<button id="start" onclick="start();">START</button>
<script src="/js/jsQR.js"></script>
<script src="/src/content.js"></script>
</body>
</html>