I have DIV with CSS property:
.box {
background-image: url(images/img.jpg);
}
I have choosed this library for transition effects. And I want to use scale effect on some pages. Typical syntax to scale elements is something like this:
$('.box').mouseover(function() {
$(this).transition({ scale: 2.2 });
});
Code above works without any error, but it scales whole DIV with all elements in it.
How to scale only background image???