jQuery - Animate css background-size?

2020-07-13 11:07发布

问题:

I'm trying to animate the size of my background image, but it's not working - Any idea why from the following code?

$(this).animate({'opacity' : 1, 'background-size':'70px 48px', 'right':39, 'top':45}, 250);

Note: all the other properties animate correctly, it's just the background-size that doesn't update.

Thanks!

回答1:

Because background-size is a CSS3 property that is not supported by jQuery yet as it's still a candidate for recommendation.

See this plugin.



回答2:

Old link chain forwards to this plugin But it's quite hard to find function that answers this question.