這是一個在網頁瀏覽器中運作的非常簡單的影像檢視器。它使用單一 .html 檔案和 36 行程式碼。將程式碼另存為index.html - 按一下此檔案將在瀏覽器中開啟一個窗口,讓您可以從電腦中選擇要顯示的圖像。我已經能夠打開 1024 x 1024 的圖像 - 很好。
程式碼如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Simple Image Viewer</title> <style> body { background-color: #f0f0f0; text-align: center; font-family: Arial, sans-serif; } img { max-width: 100%; height: auto; border: 2px solid #000; margin-top: 20px; } </style> </head> <body> <h1>Simple Image Viewer</h1> <input type="file" id="fileInput" accept="image/*"> <img id="imageViewer" src="#" alt="Your image will appear here."> <script> const fileInput = document.getElementById('fileInput'); const imageViewer = document.getElementById('imageViewer'); fileInput.addEventListener('change', function() { const file = this.files[0]; const url = URL.createObjectURL(file); imageViewer.src = url; }); </script> </body> </html>
本‧桑托拉 - 2024 年 10 月
以上是JavaScript 中的簡單圖像檢視器的詳細內容。更多資訊請關注PHP中文網其他相關文章!