Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have tried to give an arc shape to text with css3 properties and also alter js to support ie8. But this is not working.

 this.$letters.each(function (i) {


            var $letter = $(this),
                transformation = (_self.options.radius === -1) ? 'none' : 'translateX(' + $letter.data('x') + 'px) translateY(' + $letter.data('y') + 'px) rotate(' + $letter.data('a') + 'deg)',
                transition = (animation) ? 'all ' + (animation.speed || 0) + 'ms ' + (animation.easing || 'linear') : 'none';


            filterIE = 'M11=' + $letter.data('x') + ', M21=' + $letter.data('y') + ',rotation=' + $letter.data("a") + 'deg'; // js function for supporting ie8
            //alert(filterIE);
            $letter.css({
                '-webkit-transition': transition,
                '-moz-transition': transition,
                '-o-transition': transition,
                '-ms-transition': transition,
                'transition': transition
            })
            .css({
                '-webkit-transform': transformation,
                '-moz-transform': transformation,
                '-o-transform': transformation,
                '-ms-transform': transformation,
                'transform': transformation,
                'filter': "progid:DXImageTransform.Microsoft.Matrix(" + filterIE + ")"  // js function for supporting ie8
            });

            function getIEVersion() {

                var rv = -1; // Return value assumes failure.
                if (navigator.appName == 'Microsoft Internet Explorer') {

                    var ua = navigator.userAgent;
                    var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
                    if (re.test(ua) != null)

                        rv = parseFloat(RegExp.$1);
                }
                return rv;
            }


            function checkVersion() {
                var ver = getIEVersion();

                if (ver != -1) {
                    if (ver <= 9.0) {
                        //.css("-ms-filter","progid:DXImageTransform.Microsoft.Matrix(M11=1.4488887394336025, M12=-0.388228567653781, M21=0.388228567653781, M22=1.4488887394336025, SizingMethod='auto expand')"
                        //);// do something
                    }
                }
            }

            checkVersion();


        });

the text marked with bold is done the alteration to my js function. can anyone help me out here. i have made a demo on jsfiddle

share|improve this question

1 Answer

Your transform code for IE is wrong. It should be like this:

var cos = Math.cos;
var sin =Math.sin;
var deg2rad = 180 * Math.PI;
var filterIE = 'M11=' + ($letter.data('x')+cos($letter.data("a")/deg2rad)) + ',M12=' + sin($letter.data("a")/deg2rad) + ', M21=' + ($letter.data('y')-sin($letter.data("a")/deg2rad)) + ',M22=' + cos($letter.data("a")/deg2rad) + ',sizingMethod=\'auto expand\''

Also, IE9+ supports CSS3 transform. You just need the -ms- prefix.

share|improve this answer
Thanks @Licson, i have tried your code but the text is not coming in correct way in ie8 as it is in other browsers. – matthewb Jan 22 at 7:01
I think you should try using the jquery transform plugin. It is cross-browser and can help you save time and code. – Licson Jan 22 at 9:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.