officePicture.ftl 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>PDF图片预览</title>
  6. <#include "*/commonHeader.ftl">
  7. <script src="js/lazyload.js"></script>
  8. <style>
  9. body {
  10. background-color: #404040;
  11. }
  12. .container {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .img-area {
  17. text-align: center;
  18. }
  19. img {
  20. max-width: 98%;
  21. margin:0 auto;
  22. border-radius:3px;
  23. box-shadow:rgba(0,0,0,0.15) 0 0 8px;
  24. background:#FBFBFB;
  25. border:1px solid #ddd;
  26. margin:1px auto;
  27. margin-left: 15px;
  28. padding:5px;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="container">
  34. <#list imgUrls as img>
  35. <div class="img-area">
  36. <img class="my-photo" alt="loading" data-src="${img}" src="images/loading.gif">
  37. </div>
  38. </#list>
  39. </div>
  40. <#if "false" == switchDisabled>
  41. <img src="images/pdf.svg" width="63" height="63" style="position: fixed; cursor: pointer; top: 40%; right: 48px; z-index: 999;" alt="使用PDF预览" title="使用PDF预览" onclick="changePreviewType('pdf')"/>
  42. </#if>
  43. <script>
  44. window.onload = function () {
  45. /*初始化水印*/
  46. initWaterMark();
  47. checkImgs();
  48. };
  49. window.onscroll = throttle(checkImgs);
  50. function changePreviewType(previewType) {
  51. var url = window.location.href;
  52. if (url.indexOf("officePreviewType=image") !== -1) {
  53. url = url.replace("officePreviewType=image", "officePreviewType="+previewType);
  54. } else {
  55. url = url + "&officePreviewType="+previewType;
  56. }
  57. if ('allImages' === previewType) {
  58. window.open(url)
  59. } else {
  60. window.location.href = url;
  61. }
  62. }
  63. </script>
  64. </body>
  65. </html>