12345678910111213141516171819202122232425262728293031323334 |
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- </head>
-
- <body>
- <div id="img">
- </div>
- <script type="text/javascript">
- window.onload = function(){
- var headUrl = "http://ndjsxh.oss-cn-beijing.aliyuncs.com/sxzm/";
- var filename = location.hash.replace("#", '');
- document.getElementById("img").innerHTML="<img class='img' src='"+ headUrl+filename+ "'>";
- }
- </script>
- <style>
- .img{
- position:absolute;
- top:50%;
- left:50%;
- transform:translate(-50%,-50%);
- }
- @media screen and (max-width: 500px) {
- .img{
- position:absolute;
- width: 100%;
- top:0%;
- left:0%;
- transform:none;
- }
- }
- </style>
- </body>
- </html>
|