Imagine that we want to prototype a search interface. One option to support this interaction would be to show an empty search field that gets filled with some predefined text when the user clicks on it. Since we just need to prototype a particular scenario, we can decide in advance which text to show. However, in some cases, you may need the user to actually type in the search field.
The ability to integrate HTML elements into your prototypes is very useful in supporting user text input. To support the search scenario, we'll follow these steps:
- Defining the search transitions.
- Adding an invisible HTML input field on top of our prototype.
- Making the search input ...