<edit>
I actually guessed this would happen but just some seconds after posting I got a flag for "possible duplicate" which is not appropriate! This question is about CSS values and NOT about CSS property names and so it's not a dup of this or this question!!! Its also not a dup of this one because I'm asking for a generic solution.
If you are still not convinced or unsure about what this post is not about, maybe you take a look at the bottom of this question: "What I'm NOT Looking For" and "Who Is NOT Getting The Job Done" </edit>
Is there a way to set an appropriate vendor-prefixed CSS value client-side via JavaScript if needed?
What I'm Looking For
for example: background: -prefix-linear-gradient{...}
I would love to get a generic solution on how to set vendor-prefixed CSS values client-side via JavaScript. Which specific vendor prefix (-webkit-
, -ms-
, -moz-
, etc.) this may be is known very well and so not at all in the scope of my question. This question is about how to do this client-side and not as a part of the build process.
But I also appreciate any hints on
- JavaScript / jQuery plugins that get the job done or
- additional resources that could let me figure it out on my own.
As you can see I already gave an answer on my own. But I'm still looking for better solutions as Autoprefixer comes along with a heavy payload of about 626 KB!
Use Case Scenario
/*
Unprefixed version of "linear-gradient" will only work for
browsers: IE10+, FF16+, Chrome26+, Opera12+, Safari7+.
So how to generate a prefixed version on the fly if necessary?
*/
var aVal = ['linear-gradient(to bottom, #fefefe 0%,#aaaaaa 100%)', 'linear-gradient(to bottom, #aaaaaa 0%,#fefefe 100%']
style = document.getElementsByTagName('BODY')[0].style,
i = 0;
(function toggle () {
if ( i++ ) { i = 0; }
style.background = aVal[ i ];
/* here we need something like:
style.background = parseForPrefix( aVal[ i ] );
*/
setTimeout(toggle, 2000)
})();
* {
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}
Unprefixed version of "linear-gradient" will only work for<br>
browsers: IE10+, FF16+, Chrome26+, Opera12+, Safari7+.<br>
So how to generate a prefixed version on the fly if nessecary?
Or imagine something like
jQuery('head').append('<style>body{background:linear-gradient(...)}</style>')
which should be something like
jQuery('head').append('<style>'
+ parseForPrefix('body{background:linear-gradient(...)}') +
'</style>')
instead.
What I'm NOT Looking For
for example: -prefix-transform: translate{...}
The topic how to use vendor prefixes on CSS property names is discussed enough (and not what I'm after).
NOTE: I'm also totally aware of pre-&post-processors used as part of the build process. My whole CSS workflow is based on "Grunt : SASS : Autoprefixer" so no need to give any suggestions on that!
Who Is NOT Getting The Job Done
- -prefix-free is doing a pretty good job on vendor-prefixed CSS property names but doesn't take care of vendor-prefixed CSS values.
- Unfortunately, this is also the case with jQuery.
maybe Modernizr can fix this, like
How it works:
In order to do what you're asking, you'd need a reference to compare the browser that's currently being used against what prefixes are needed; like caniuse. Or you could make some mixins with the CSS @supports rule, but that might be more trouble than it's worth.
There is an existing solution, autoprefixer, but it would require you to use postcss. The README has examples of various build tool plugins. I use SCSS and autoprefixer, and I'm living the dream.
You can iterate
document.styleSheets
, get"cssRules"
and"style"
property ofCSSStyleDeclaration
, if the value of the property matches a variable, for example, aRegExp
, use.replace()
to prepend prefix to valueIf you are unsure if this topic is something that is relevant for you, please read section "Recommendation | Important Notes For Newbies" at the bottom of this answer first.
Credits to Ari for his answer that at least pointed me in the right direction. This solution makes use of Autoprefixer which most of you probably use together with a task runner as part of your build setup (which is also true for me).
Unfortunately, I was not able to get information about how to use Autoprefixer as a client-side, standalone version. So I simply took a look at websites from which I know that they are doing the same task that I also want to achieve (namely Autoprefixer | UI, CodePen, Sassmeister and JS Bin).
The best resource for doing so was the official Autoprefixer | UI and all in all - actually it wasn't a big deal. So here we go with a very basic mockup that is able to illustrate...
How To Use Autoprefixer Client-Side
Actually
autoprefixer.process( sInput ).css
is all we need.But lets bootstrap this to a more real life-like use case scenario.
Pro
Contra
Recommendation | Important Notes For Newbies
linear-gradient
,radial-gradient
, etc.) and not CSS property names (egbackground
). Much likely this would be the case for plugin authors that rely on cross-browser CSS3 features.PS: After double checking all resources I got aware that https://github.com/postcss/autoprefixer#javascript also points at the right direction.