Share Posted July 7, 2016 Can anyone give me a clue as to why IE9 is rotating my SVG files differently than all other browsers? TransformOrigin doesnt seem to work the same (I have tried, %, pixels, and top), and it is going in different directions. The CodePen link should show the 3 lettter "A"s pointing to the left. But in IE9, they get squished and point down after a TweenMax.set call. Any thoughts? Thanks very much. Also posted here in case CodePen doesnt allow IE9 viewing: http://brendyn.com/test2/ See the Pen QErOYr by leisurelarry (@leisurelarry) on CodePen Link to post Share on other sites
Share Posted July 7, 2016 Also, try going into the source code of the svgs and add width and height attributes to the <svg>. I've heard that helps in some cases. <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 134.2 215.2" style="enable-background:new 0 0 134.2 215.2;" xml:space="preserve"> <style type="text/css"> .st0{font-family:'MyriadPro-Regular';} .st1{font-size:309.0591px;} </style> <text transform="matrix(0.5862 0 0 1 12 211.04)" class="st0 st1">A</text> </svg> Just want to eliminate as many options as possible as its very unlikely this is related to GSAP or its something GSAP can fix. 1 Link to post Share on other sites
Share Posted July 7, 2016 Weird, it seems a previous response of mine disappeared. Welcome to the forums, and thanks for the demo. Please try doing that rotation with a CSS -ms-transform: rotate(-90deg); or plain JS. I'm really doubtful this is related to GSAP. Our CSSPlugin just sees you are rotating a div, it really has no idea you are using an SVG background. I'm doubtful there's anything in GSAP that can fix this. Seems like a rendering glitch in IE9. Link to post Share on other sites
Share Posted July 7, 2016 @Carl: Is this your runaway post by any chance? http://greensock.com/forums/topic/14709-upload-html5-creatives-easily-in-dfp-with-the-html5-creative-type/?p=62903 2 Link to post Share on other sites
Share Posted July 7, 2016 Ha! thanks, bud. At least I'm not entirely crazy. Link to post Share on other sites
Author Share Posted July 7, 2016 Thanks for your thoughts. I think it does have something to do with SVG itself. Thats a shame. Link to post Share on other sites