| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <html dir="ltr" lang="zh">
- <head>
- <META http-equiv="Content-Type" content="text/html; charset=utf-8">
- <style type="text/css">
- iframe {
- width: 370px;
- height: 170px;
- }
- html {
- overflow: visible;
- }
- body {
- border: 0px solid;
- margin: 3px;
- padding-top: 14px;
- font-Size: 9pt;
- font-Family: 宋体;
- background-attachment: fixed;
- background-position: left top;
- background-repeat: no-repeat;
- background-size: 100% 100%;
- word-break: break-all;
- }
- a{
- text-decoration:none;
- }
- .btn-load {
- position: absolute;
- width: 100%;
- font-size: 12px;
- color: #0000ff;
- text-align: center;
- display: block-inline;
- top: 0px;
- left: 0px;
- margin: 3px 0;
- }
- </style>
- <script type="text/javascript">
- function AutoResizeImage(maxWidth, maxHeight, objImg) {
- var img = new Image();
- img.src = objImg.src;
- var hRatio;
- var wRatio;
- var Ratio = 1;
- var w = img.width;
- var h = img.height;
- wRatio = maxWidth / w;
- hRatio = maxHeight / h;
- if (maxWidth == 0 && maxHeight == 0) {
- Ratio = 1;
- } else if (maxWidth == 0) {
- // if (hRatio<1) Ratio=h Ratio; }else if (maxHeight==0){ if (wRatio<1) Ratio=w
- Ratio;
- } else if (wRatio < 1 || hRatio < 1) {
- Ratio = (wRatio <= hRatio ? wRatio : hRatio);
- }
- if (Ratio < 1) {
- w = w * Ratio;
- h = h * Ratio;
- }
- objImg.style.height = h + 'px';
- objImg.style.width = w + 'px';
- }
- function openInIE(objImg) {
- window.location = 'about:blankFile://_' + objImg.src.replace("file:///", "");
- // oShell.ShellExecute ( "IEXPLORE", objImg.src, "", "open", "1");
- }
- </script>
- </head>
- <body link="#0000FF" vlink="#0000FF" alink="#0000FF" hlink="#0000FF" bgcolor="#FFFFFF" oncontextmenu="location.href='PopMenu';return false;">
- <a class="btn-load" id="btnLoad" href="about:blankLoadHistroyMessage">查看更多消息</a>
- </body>
- </html>
|