-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from DavidPatzke/main
Add Generator page
- Loading branch information
Showing
3 changed files
with
426 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"> | ||
<title></title> | ||
</head> | ||
|
||
<body><section class="section"> <h1 class="title" >Twitch Chat Overlay URL generator</h1> | ||
<h2 class="subtitle" >based on <a href="https://github.com/izzy/twitch-chat" target="_blank" rel="noreferrer">https://github.com/izzy/twitch-chat</a> </h2> | ||
<label class="checkbox"> | ||
<input type="checkbox" value="debug" checked id="debug" />Use fake message</label> | ||
|
||
</section> | ||
<section class="section"> | ||
|
||
<div class="columns is-multiline"> | ||
<div class="column is-full"> | ||
<div class="columns"> | ||
<span class="column is-10"> <input class="input" readonly id="url" style="width:100%"></input></span> | ||
<span class="column is-2"><button class="button" id="copy-button">Copy</button></span> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="column"> | ||
<div class="columns"> | ||
<div class="column is-one-quarter"> | ||
<iframe src="./chat.html" height="100%" id="preview"></iframe> | ||
</div> | ||
|
||
<div class="column is-three-quarters"> | ||
<form id="generator" class="columns is-multiline" ></form> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<script src="./generator.js"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.