I need to set a css3 transform:scale() back to it’s original value.
See this example:
It works on click, but not when I hover out..
I also tried setting to scale(1) but that doesn’t help either..
Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In your second hover callback, you are still using
inValue. If you switch it to useoutValue, like this updated fiddle: http://jsfiddle.net/Z2TNw/1/ It works as expected.