/
githubmirror
/
tauri
Обзор
Документация
Войти
/
githubmirror
/
tauri
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
examples/splashscreen/dist/index.html
14 строк
367 B
Amr Bashir
chore: cleanup and simplify examples (#10743)
27 авг 2024, 01:25
Не верифицирован
27 авг 2024, 01:25
ad83d41
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <body> <h1>This is the main window!</h1> <script> const { invoke } = window.__TAURI__.core; document.addEventListener('DOMContentLoaded', () => { // we delay here just so we can see the splashscreen for a while setTimeout(() => invoke('close_splashscreen'), 2000) }) </script> </body> </html>