using the animate() function?

I tried this solution: Correct way to animate box-shadow with jQuery

like

...
  .animate({
    marginTop: '-20px',
    marginLeft: '-20px',
    width: '200px',
    height: '200px',
   'boxShadowX': '10px',
   'boxShadowY':'10px',
   'boxShadowBlur': '20px'
  }, 200);
...

but it doesn't work...

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

The link you provided is using https://github.com/brandonaaron/jquery-cssHooks/raw/master/boxshadow.js, make sure you are calling the script.

You can also checkout the excellent jQuery Shadow animation plugin http://www.bitstorm.org/jquery/shadow-animation/

link|improve this answer
thanks, that works :D but not in opera :( – Alex Apr 5 '11 at 4:02
The author claims it's an opera bug. I can't test it from my side. You're animation should work. I think you forget to call the boxshadow.js script, I included the link in my answer. – Hussein Apr 5 '11 at 4:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.