Skip to content

Instantly share code, notes, and snippets.

@etr2460
etr2460 / index.html
Created November 6, 2021 04:20
HTML for adding a texture overlay to an entire webpage
<body>
<div>All the page content goes here</div>
<div class="paperOverlay"></div>
</body>
@etr2460
etr2460 / styles.css
Last active November 6, 2021 04:38
Styles for adding a texture overlay to an entire webpage
body {
position: relative;
}
.paperOverlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
<script>
navigator.mediaDevices.enumerateDevices().then(function(devices) {
console.log(devices);
navigator.mediaDevices.getUserMedia({
audio: {
deviceId: {
exact: "default"
},
echoCancellation: {
exact: false