I'm looking for a way to rotate and flip image at the same time .i used this : to flip:
$('.images').css({
'-webkit-transform' : 'scaleX(-1)',
'-o-transform' : 'scaleX(-1)',
'-webkit-transform' : 'scaleX(-1)',
'transform' : 'scaleX(-1)',
'filter':'FlipH'});
to rotate :
$('.images').css({
'-webkit-transform' : 'rotate('+-ui.value+'deg)',
'-o-transform' : 'rotate('+-ui.value+'deg)',
'-moz-transform' : 'rotate('+-ui.value+'deg)',
'-ms-transform' : 'rotate('+-ui.value+'deg)',
'transform' :'rotate('+-ui.value+'deg)'
});
I want to keep image flipping while rotate , can someone Help , thank you all.