Animations play an important role in improving User Experience by making it smooth and pleasant to use. There is no doubt that this has become part of every User Interactions on apps that we use everyday. In this tutorial, I will teach you how to trigger events when you’re using CSS animations in ReactJS in a simple way. So, let’s get started! What is CSS animation? First, if you’re wondering what CSS animations are, it should be quite obvious by …
Tag: javascript
You may have already known that webpack is a javascript module bundler. But there’s actually more to it than meets the eye. In reality, it has a lot of features that you may not be aware of such as HMR or Hot Module Replacement which is undoubtedly the best feature webpack has to speed up front-end development. Webpack also has some great features such as tree-shaking. But we will not discuss it in this article. Today, I will discuss the …
It is now 2019 and things have changed for better or for worse in Software Industry. It can be tempting to jump into the React bandwagon because of the fact that it builds reputation over the past years and newcomers were also interested in jumping into the bandwagon. But, is it really worth jumping into the React ecosystem despite the growing emergence of its competitor like Vue in 2019? In this article you will know its definition and basic usage, …
React is a great front-end library where the concepts are easy to grasp such as state and components, but it can be confusing, a little bit difficult to integrate without the use of boilerplate like create-react-app. According to the official page, React serves as a “V” in MVC. I’ve been trying to scratch my head for years before I got the concept and how can I integrate it gracefully in my existing ASP.net MVC app. A lot (or some) of …