|
|
10 년 전 | |
|---|---|---|
| .. | ||
| .bower.json | 10 년 전 | |
| README.md | 10 년 전 | |
| bower.json | 10 년 전 | |
| component.json | 10 년 전 | |
| get-style-property.js | 10 년 전 | |
| package.json | 10 년 전 | |
Original by @kangax :heart_eyes: :zap: :star2:. See perfectionkills.com/feature-testing-css-properties/
var transformProp = getStyleProperty('transform');
// returns WebkitTransform on Chrome / Safari
// or transform on Firefox, or MozTransform on old firefox
// then you can use it when setting CSS
element.style[ transformProp ] = 'translate( 12px, 34px )';
// or simply check if its supported
var supportsTranforms = !!transformProp;
Bower :bird:: bower install get-style-property
npm: npm install desandro-get-style-property
Component: component install desandro/get-style-property
getStyleProperty is released under the MIT License.