I am in need of JavaScript that can achieve the following task:
I require small green text to appear, gradually increasing in size before disappearing. This process should take approximately 2-3 seconds to complete. I will need multiple instances of this text in various locations on the website, which means it must meet the following criteria:
The text animations should be purely visual and not interfere with user interaction such as clicking
The JavaScript code should be lightweight and easy to load for users, especially since the website is already quite heavy
It should be compatible with ASP.NET implementation
It may be challenging to explain, but think of games like World of Warcraft. When you perform an action, a number appears indicating the impact. The concept is similar: User actions trigger visual text animations to provide graphical feedback...
How would you go about implementing this?
Thank you in advance...