Skip to content

Instantly share code, notes, and snippets.

@krisdahl
Last active June 14, 2024 22:36
Show Gist options
  • Save krisdahl/dedeca7092e41ea51a0515108bc3f022 to your computer and use it in GitHub Desktop.
Save krisdahl/dedeca7092e41ea51a0515108bc3f022 to your computer and use it in GitHub Desktop.
A quick touchscreen layout for Companion by iframing 4 Bitfocus Companion Streamdeck Emulators into a multiview.
<!DOCTYPE html>
<html>
<head>
<style>
* {
box-sizing: border-box;
}
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
height: 100vh;
width: 100vw;
overflow: hidden;
}
iframe {
border: none;
width: 100%;
height: 100%;
}
body {
background-color: black;
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<div class="grid-container">
<iframe src="http://10.1.1.2:8000/emulator/aaaa"></iframe>
<iframe src="http://10.1.1.2:8000/emulator/bbbb"></iframe>
<iframe src="http://10.1.1.2:8000/emulator/cccc"></iframe>
<iframe src="http://10.1.1.2:8000/emulator/dddd"></iframe>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment