1
0
Fork 0

Update chyron text with text field

main
Jeff Moe 2022-12-25 11:58:19 -07:00
parent 74d45e311e
commit ea5fe03ad0
2 changed files with 16 additions and 11 deletions

View File

@ -0,0 +1,6 @@
/** @type {import('./$types').Actions} */
export const actions = {
default: async (event) => {
// TODO log the user in
}
};

View File

@ -1,6 +1,7 @@
<script> <script>
import Ticker from 'svelte-ticker'; import Ticker from 'svelte-ticker';
import {HsvPicker} from 'svelte-color-picker'; import {HsvPicker} from 'svelte-color-picker';
import { enhance } from '$app/forms';
function colorCallback(rgba) { function colorCallback(rgba) {
let r = rgba.detail.r; let r = rgba.detail.r;
@ -11,7 +12,10 @@ function colorCallback(rgba) {
let horizontal = document.querySelector(".horizontal"); let horizontal = document.querySelector(".horizontal");
horizontal.style.color = `rgb(${r},${g},${b})`; horizontal.style.color = `rgb(${r},${g},${b})`;
} }
export let chyrontext='chyron text here. Mooooo. 1234567890. qwertyuyiop. asdfghjkl. zxcvbnm. chyron text here. Mooooo. 1234567890. qwertyuyiop. asdfghjkl. zxcvbnm.'
/** @type {import('./$types').ActionData} */
export let form;
let chyron_text = 'chyron text here. Mooooo. 1234567890. qwertyuyiop. asdfghjkl. zxcvbnm. chyron text here. Mooooo. 1234567890. qwertyuyiop. asdfghjkl. zxcvbnm.';
</script> </script>
@ -25,19 +29,14 @@ export let chyrontext='chyron text here. Mooooo. 1234567890. qwertyuyiop. asdf
</div> </div>
<p></p> <p></p>
<div class="form"> <div class="form">
<form method="POST"> <p><input bind:value={chyron_text} placeholder="{chyron_text}">
<label> </p>
<p>Text</p> </div>
<input name="chyrontext" type="text">
</label>
<button>Update</button>
</form>
</div>
<div class="horizontal"> <div class="horizontal">
<!-- delay affects text starting point offset--> <!-- delay affects text starting point offset-->
<Ticker pausing=false duration=60 delay=-5> <Ticker pausing=false duration=60 delay=-5>
<!-- foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo foooo barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr barrrr --> {chyron_text}
{chyrontext}
</Ticker> </Ticker>
</div> </div>
</div> </div>