Firefox 15 - クロム:
$('#img2').css('transform');
return => "rotate(90deg)"
Firefox 16
$('#img2').css('transform');
return => matrix(0, 1, -1, 0, 0, 0);
firefox 16で回転値を取得する方法はありますか?マトリックスとは何ですか?
Firebq では次のようになります。
element.style {
height: auto;
transform: rotate(90deg);
width: auto;
}