
CSS transform
I have JWPlayer embedded in a page, that itself is in an iframe. This works fine.
Then I use CSS Transform to scale the body of the iframe, like this:
$('body').css({
"transform":"scale(0.8)",
"transform-origin":"0 0"
});
This mostly works fine. Except, the player's idea of where the mouse is seems to be
incorrect.
Has anyone tried this?