mirror of
https://github.com/andrewstephens75/as-dithered-image.git
synced 2026-04-14 04:29:28 -07:00
26 lines
507 B
HTML
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> |