index.html 357 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>This is the main window!</h1>
  5. <script>
  6. document.addEventListener('DOMContentLoaded', () => {
  7. // we delay here just so we can see the splashscreen for a while
  8. setTimeout(() => {
  9. window.__TAURI__.invoke('close_splashscreen')
  10. }, 2000)
  11. })
  12. </script>
  13. </body>
  14. </html>