Last active
June 14, 2024 22:36
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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