Safari - jQuery Added CSS Transform Not Working -
i adding transform element using jquery, works in browser nothing in safari. i've looked around answer, cannot find solution or talking this. here code not working:
$('.element').css("-webkit-transform", "translate3d(200px,0px,0px);
transform works if add directly css, seems isn't showing when using jquery.
you're missing quote , closing parenthesis @ end there.
$('.element').css("-webkit-transform", "translate3d(200px,0px,0px)");
also see this.
Comments
Post a Comment