| 123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title></title>
- </head>
- <style>
- * {
- margin:0;
- padding:0;
- }
- </style>
- <body>
- <img id="img" style="width:100vw" alt="">
- </body>
- <script>
- function imgsrc(path){
- var img = document.getElementById("img");
- img.src = path;
- }
- </script>
- </html>
|