Files
as-dithered-image/test.html
Andrew Stephens db859c9134 Simplified code
2023-01-01 19:28:01 -05:00

26 lines
507 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
</head>
<body>
<script src="as-dithered-image.js"></script>
<style>
.setSize {
width: 80%;
min-width: 80%;
}
</style>
<as-dithered-image class="setSize" src="Van_Gogh_-_Starry_Night_-_Google_Art_Project.jpg"></as-dithered-image>
<p>devicePixelRatio = <span id=dpr>0</span></p>
</body>
<script>
document.getElementById("dpr").innerText = window.devicePixelRatio
</script>
</html>