loadImg.html 514 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title></title>
  8. </head>
  9. <style>
  10. * {
  11. margin:0;
  12. padding:0;
  13. }
  14. </style>
  15. <body>
  16. <img id="img" style="width:100vw" alt="">
  17. </body>
  18. <script>
  19. function imgsrc(path){
  20. var img = document.getElementById("img");
  21. img.src = path;
  22. }
  23. </script>
  24. </html>