Hyperbole provides various events that can be tied to specific actions. Up to this point, we've only used them via the higher-level views like button
and search
. They can also be used directly. In this example we use onMouseEnter
and onMouseLeave
Remember it is better to use Atomic CSS to provide immediate feedback whenever possible. If used improperly, too many mouse events could make the app unresponsive.
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50