canvas-iframe.html 2.7 KB

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