I am looking to trigger two animations simultaneously when hovering over a single div.
The first animation involves scaling an image down to 50%. The second animation aims to scale text from 0% to 100% while moving it up by 10px from its original position.
While I have successfully achieved the image scaling animation using the provided code, I am encountering difficulties in implementing the text animation.
-webkit-transform: scale(.5);
You can view the functional scaling image animation on JSFiddle: http://jsfiddle.net/ZVScz/
I would appreciate any guidance on how to incorporate the text scaling animation and vertical movement into my project. Thank you in advance for your assistance!