The hover selector in CSS is a very well known selector, it can do great things for when your mouse hovers over an element. However this snpappy change can be quite off putting or startling.
This is were transition helps, by bringing in your changes on hover state over the span of a set time amount rather than instantly.
Take this example, a hover without a transition
To a hover with a transition
I used
.element { /* styles */ transition: .6s linear; } .element:hover { /* border changes etc */ transition: .6s linear; }
Putting a transition in the non hover element style makes it ease back into its non hover state.
Make sure to read up on the transition docs. There is plenty more to know and use like delays, applying only to certain properties and timings.
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…