π The UX lesson that stuck with me for over 10 years
π
Project year: 2013
π¨ The problem
In 2013, I worked on a digital book project targeting Android and iOS tablets, especially Retina iPads, which were underpowered for their high resolution. The client requested a hybrid app instead of a native one to save development costs.
The goal was to enable smooth horizontal swiping between pages while dynamically loading and unloading content to optimize memory usage. However, the rendering performance was a major challenge.
β οΈ The challenges
- Loading new
<img>
elements or background images froze the UI while they loaded.
- Rendering performance was especially sluggish on iPads due to their high-resolution displays and underpowered GPUs.
- Swiping felt laggy and unresponsive due to rendering delays.
π‘ The solution
To achieve smooth performance, I implemented a few creative workarounds:
- Used a GPU-accelerated <canvas> instead of
<img>
elements to preload and render images seamlessly.
- Implemented a 3D transform hack to take advantage of GPU acceleration for fluid swiping.
- Added and removed pages dynamically in the swiping direction while using margins to maintain layout stability.
π The impact
The biggest success of this project was achieving native-like performance and interactivity in a hybrid app, making it feel as smooth as a fully native implementation.
- Enabled seamless, lag-free scrolling on underpowered devices.
- Allowed the project to be built as a hybrid app, reducing development costs compared to native alternatives.
- Proved that performance is critical to UXβusers donβt just see speed, they feel it.
π The lesson learned
- Performance is crucial for UX. A laggy experience breaks immersion, and users will always feel itβwhether they realize it or not.
- Interestingly, none of the techniques used here are directly supported by modern frameworks. Performance problems often require platform-specific optimizations, and relying purely on frameworks wonβt solve them. By going beyond what frameworks and libraries typically address, we can expand our repertoire of techniques that we can use in performance-critical situations.
Even today, ensuring buttery-smooth UI interactions remains one of the most important aspects of UX. The best performance optimizations are often the ones that go beyond standard approaches.