index.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="shortcut icon" type="image/x-icon" href="/src/assets/images/logo.png">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title><%- title %></title>
  8. <script>
  9. window.process = {
  10. cwd() { return '' }
  11. }
  12. // 浏览器关闭执行的是 beforeunload , unload 这两个事件
  13. // 而浏览器刷新执行的是 beforeunload, unload, load 三个事件
  14. // 关闭浏览器,两个事件执行间隔事件会少于5ms,刷新页面时间会长,不同页面经测试所需时间8~100ms之间不等
  15. window.addEventListener('beforeunload', (event) => {
  16. // event.preventDefault();
  17. // event.returnValue = '';
  18. // window.beforeUnloadTime = new Date().getTime();
  19. });
  20. window.addEventListener('unload', function (event) {
  21. // const gapTime = new Date().getTime() - window.beforeUnloadTime;
  22. // if (gapTime <= 5) {
  23. // window.trace && window.trace.stop('SZJC-' + Date.now())
  24. // console.log('>>>>>>结束录制');
  25. // } else {
  26. // console.log('>>>>>>刷新,继续录制');
  27. // }
  28. });
  29. </script>
  30. </head>
  31. <body>
  32. <div id="app"></div>
  33. <script type="module" src="/src/main.ts"></script>
  34. </body>
  35. </html>