Home

Interaction

Creating interaction in Famo.us involves two procedures: capturing input from the user, and using events to trigger behavior across the application. In this section, we’ll cover strategies to do both.

Capturing User Input

To get user input, we either listen for input events (e.g. a mouse click), or get data from HTML form elements (e.g. a text field). Then, it’s up to you to decide what to do with the information. Learn how to capture user input »

Working with Events

Events are a way to know when the user is interacting with your application, but you can also use events internally to trigger application behavior, keeping your components self-contained and decoupled. Use program events to build your application »

First stop: User Input »