-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
601 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,31 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="stylesheet" href="/src/styles.css" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Tauri App</title> | ||
<script type="module" src="/src/main.ts" defer></script> | ||
</head> | ||
|
||
<body> | ||
<main class="container"> | ||
<h1>Welcome to Tauri</h1> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0" | ||
> | ||
<title>Document</title> | ||
|
||
<div class="row"> | ||
<a href="https://vitejs.dev" target="_blank"> | ||
<img src="/src/assets/vite.svg" class="logo vite" alt="Vite logo" /> | ||
</a> | ||
<a href="https://tauri.app" target="_blank"> | ||
<img | ||
src="/src/assets/tauri.svg" | ||
class="logo tauri" | ||
alt="Tauri logo" | ||
/> | ||
</a> | ||
<a href="https://www.typescriptlang.org/docs" target="_blank"> | ||
<img | ||
src="/src/assets/typescript.svg" | ||
class="logo typescript" | ||
alt="typescript logo" | ||
/> | ||
</a> | ||
</div> | ||
<p>Click on the Tauri logo to learn more about the framework</p> | ||
<script type="module" src="/src/main.ts" defer></script> | ||
|
||
<style> | ||
html, | ||
body { | ||
/* background-color: rgba(255, 0, 0, 0.25); */ | ||
/* pointer-events: none; */ | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<button id="btn">Show overlay</button> | ||
<button id="btn2">Hide overlay</button> | ||
<div id="counter"></div> | ||
</body> | ||
|
||
<!-- <script type="module" src="../main.ts"></script> --> | ||
|
||
<form class="row" id="greet-form"> | ||
<input id="greet-input" placeholder="Enter a name..." /> | ||
<button type="submit">Greet</button> | ||
</form> | ||
<p id="greet-msg"></p> | ||
</main> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.