canvas-iframe.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>iframe</title>
  7. <style>
  8. html,
  9. body {
  10. width: 100% !important;
  11. overflow: hidden !important;
  12. scrollbar-width: none;
  13. }
  14. body::-webkit-scrollbar {
  15. display: none;
  16. }
  17. #wrap {
  18. position: relative;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div id="wrap"></div>
  24. <script>
  25. const wrap = document.querySelector("#wrap");
  26. let cover_value = "",
  27. loading = true;
  28. // 设置元素监听器
  29. let wrapOb = new MutationObserver((e) => {
  30. if (!loading) return;
  31. window.parent.postMessage(true);
  32. wrap.appendChild(createWatermark(cover_value));
  33. loading = false;
  34. });
  35. // 开始监听 wrap的子元素
  36. wrapOb.observe(wrap, { childList: true });
  37. window.addEventListener("message", (event) => {
  38. const { content, cover } = event.data;
  39. cover_value = cover;
  40. wrap.innerHTML = content;
  41. });
  42. // 创建水印
  43. function createWatermark(coverValue) {
  44. const wrap = document.querySelector("#wrap"),
  45. boxHeight = wrap.offsetHeight,
  46. boxWidth = wrap.offsetWidth,
  47. pageHeight = boxWidth / 0.7,
  48. nums = Math.floor(boxHeight / pageHeight),
  49. fontSize = parseInt(wrap.offsetWidth / 12),
  50. cover = document.createElement("div");
  51. cover.className = "cover";
  52. cover.style.height = boxHeight + "px";
  53. cover.style.lineHeight = fontSize + "px";
  54. cover.style.position = "absolute";
  55. cover.style.top = 0;
  56. cover.style.left = "50%";
  57. cover.style.display = "flex";
  58. cover.style.flexDirection = "column";
  59. cover.style.alignItems = "center";
  60. cover.style.justifyContent = "center";
  61. cover.style.transform = "translateX(-50%)";
  62. cover.style.pointerEvents = "none"; // 取消所有事件
  63. for (let i = 0; i < nums; i++) {
  64. let c = document.createElement("div");
  65. c.className = "cover";
  66. c.style.width = "max-content";
  67. c.style.height = boxHeight + "px";
  68. c.style.fontSize = fontSize + "px";
  69. c.style.transform = "rotateZ(315deg) scale(0.7)";
  70. c.style.color = "rgba(0, 0, 0, 0.05)";
  71. c.style.fontWeight = "bold";
  72. c.style.display = "flex";
  73. c.style.flexDirection = "column";
  74. c.style.alignItems = "center";
  75. c.style.justifyContent = "center";
  76. c.innerText = coverValue;
  77. c.style.pointerEvents = "none"; // 取消所有事件
  78. cover.appendChild(c);
  79. }
  80. return cover;
  81. }
  82. </script>
  83. </body>
  84. </html>