Skip to content

Commit bdd4cc2

Browse files
committed
starter.py
1 parent d7d3eec commit bdd4cc2

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

helloworld/starter.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from random import random
2+
from fasthtml.common import *
3+
app,rt = fast_app()
4+
5+
@rt
6+
def index():
7+
return Titled(
8+
'Hello',
9+
Div(P('click'), post=rnd)
10+
)
11+
12+
@rt
13+
def rnd(): return P(random())
14+
15+
serve()
16+

htmx/surreal.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,23 @@
44
@rt("/")
55
def get():
66
return Titled('Hello',
7+
H2("fadeOut() Demo"),
78
Safe('I fade <i>out</i> and <i>remove</i> my italics.'),
8-
Any('await sleep(1000); e.fadeOut()', 'i'),
9-
Div('Click me to remove me.', On('e.fadeOut()')),
9+
Any('i', 'await sleep(1000); e.fadeOut()'),
1010
Button('Click me to remove me.', On('e.fadeOut()')),
11-
Div('I am leaving soon!'),
12-
Prev('await sleep(1000); e.fadeOut()')
11+
H2("On() Demo"),
12+
Div("I change color when clicked.",
13+
On("e.styles('background-color: lightblue');")
14+
),
15+
H2("AnyOn() Demo"),
16+
Button("Button 1"),
17+
Button("Button 2"),
18+
Button("Button 3"),
19+
AnyOn("button", "e.classToggle('highlight');"),
20+
H2("Prev() Demo"),
21+
Input(type="text", placeholder="Type here"),
22+
Prev("e.value = e.value.toUpperCase();", event="input"),
23+
Style(".highlight { background-color: yellow; }")
1324
)
1425

1526
serve()

0 commit comments

Comments
 (0)