I'm trying to rotate an image with jQuery
on version 1.8.2
. I can't change this version.
Here is what I've tried:
$("#test").css("-webkit-transform","rotate(-90deg)")
$("#test").css("-moz-transform","rotate(-90deg)")
$("#test").css("-ms-transform","rotate(-90deg)")
$("#test").css("-o-transform","rotate(-90deg)")
$("#test").css("transform","rotate(-90deg)")
$("#test").tabs('rotate', -90)
$("#test").rotate(-90)
$("#test").rotateAnimation(-90)
None of these lines work
My navigator is a custom one by Samsung
on a Smart TV. Here is the result of navigator.userAgent
command:
Mozilla/5.0 (SmartHub; SMART-TV; U; Linux/SmartTV+2014; Maple2012) AppleWebKit/537.42+ (KHTML, like Gecko) SmartTV Safari/537.42+
Edit :
This seems impossible for now. Does it exist an other way to make a rotation without using HTML5
?
Edit2 : Here is some working code:
$("#myVideo-container").get(0).style.webkitTransform = 'scale(-0.5,-0.5)';
$("#myVideo-container").get(0).style.webkitTransform = 'translateY(-600px)';
I've tried to move from video
to div
rotation but still not rotating.