File tree 2 files changed +31
-4
lines changed
2 files changed +31
-4
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 4
4
@rt ("/" )
5
5
def get ():
6
6
return Titled ('Hello' ,
7
+ H2 ("fadeOut() Demo" ),
7
8
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()' ),
10
10
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; }" )
13
24
)
14
25
15
26
serve ()
You can’t perform that action at this time.
0 commit comments