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'm displaying a element on my site which I rotate with -90deg but if a browser doesn't support the CSS transform the element looks misspositioned and not really good. Now I want to detect with JavaScript or jQuery (it's indifferent if jQ or JS because I use/loaded already jQ on my site) if this rotation via CSS is supported?

I know Modernizr but just for that little thing I don't want to include that whole library (and speed down the website speed load).

share|improve this question
2  
Have a look at source of jQuery transform plugin (which extends jQuery .css() and .animate() functions) how they did it. Or, better, just use that plugin :) It's small. – BalusC Aug 27 '11 at 2:12
1  
You don't have to download the whole bundle from modernizr, you could just select 2d transform from the custom download – Amin Eshaq Aug 27 '11 at 2:13
I just looked at how modernizr does things and borrowed small pieces from it for a project of mine. – jfriend00 Aug 27 '11 at 2:19
@BalusC Post this as answer, I'll accept it :) – Poru Aug 27 '11 at 12:35

5 Answers

up vote 4 down vote accepted

Have a look at source of jQuery transform plugin (which extends jQuery .css() and .animate() functions with new transform property) how they did it. Or, better, just use that plugin :) It's small.

share|improve this answer
Thanks, it saved me a lot of effort. :) – m_gol Sep 5 '12 at 20:31

This is about as simple as you get and a jsfiddle.

var prefixes = 'transform WebkitTransform MozTransform OTransform msTransform'.split(' '),
    el = document.createElement('div'),
    support=0;

while( support !== true ){
  support = document.createElement('div').style[prefixes[support++]] != undefined || support;
}

document.write('support:'+support);
share|improve this answer
1  
This goes on in an infinite loop if the browser doesn't support transforms (will also eat all the ram). – maxgalbu May 3 at 8:51

Here's a function based on Liam's answer. It will return either the name of the first supported prefix or false if none of the prefixes are supported.

function getSupportedTransform() {
    var prefixes = 'transform WebkitTransform MozTransform OTransform msTransform'.split(' ');
    for(var i = 0; i < prefixes.length; i++) {
        if(document.createElement('div').style[prefixes[i]] !== undefined) {
            return prefixes[i];
        }
    }
    return false;
}
share|improve this answer

Just pull what you need out of Modernizr

First we need the testProps function

   /**
     * testProps is a generic CSS / DOM property test; if a browser supports
     *   a certain property, it won't return undefined for it.
     *   A supported CSS property returns empty string when its not yet set.
     */
    function testProps( props, prefixed ) {
        for ( var i in props ) {
            if ( mStyle[ props[i] ] !== undefined ) {
                return prefixed == 'pfx' ? props[i] : true;
            }
        }
        return false;
    }

Then run the cssTransform test

var tests = [];
 tests['csstransforms'] = function() {
        return !!testProps(['transformProperty', 'WebkitTransform', 'MozTransform', 'OTransform', 'msTransform']);
    };

if tests['csstransforms'] is true, then you have the feature available.

share|improve this answer
There seems to be a mistake in the code: mStyle is not defined – Poru Aug 27 '11 at 12:17
Define it then :) var myStyle = [] – Wes Aug 29 '11 at 14:52

Here's the code I'm using to detect if CSS3 transitions are supported:

var div = document.createElement('div');
div.setAttribute('style', 'transition:top 1s ease;-webkit-transition:top 1s ease;-moz-transition:top 1s ease;-o-transition:top 1s ease;');
document.body.appendChild(div);
var cssTransitionsSupported = !!(div.style.transition || div.style.webkitTransition || div.style.MozTransition || div.style.OTransitionDuration);

div.parentNode.removeChild(div);
div = null;

I'm purposefully not looking for Microsoft support since Microsoft hasn't yet shipped a browser that supports CSS3 transitions and I don't want my code automatically supporting an implementation I haven't tested yet in the future.

share|improve this answer

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.