I\'m having troubles with setting the transform-origin of a div to the center of the site.
This is what I have so far:
var xPos = ($(window).outerWid
I stumbled upon this thread. For anyone else trying to solve this with the original posters solution please include Zpx-value aswell (third parameter) and it will work with jQuery.
Example:
var xPosSTR = 200 + 'px';
var yPosSTR = 500 + 'px';
$('.element').css({
'transform-origin': xPosSTR + ' ' + yPosSTR + ' 0px',
'-webkit-transform-origin': xPosSTR + ' ' + yPosSTR + ' 0px'
});
And forgive the ugly JS ;)