How can I create a CSS Grow effect in HTML, where each letter grows and shrinks continuously to create a loading effect? I want to achieve this with the following HTML code:
<h4 class='groweffect'>Loading please wait</h4>
To implement the grow effect, I found a helpful resource at . Here is the CSS code for the grow effect:
.groweffect {
-webkit-transition:all 0.5s ease-out;
-moz-transition:all 0.5s ease-out;
-ms-transition:all 0.5s ease-out;
-o-transition:all 0.5s ease-out;
transition:all 0.5s ease-out;
}
Any advice or guidance on how to achieve this effect would be greatly appreciated. Thank you!