_transform.scss 495 B

123456789101112131415
  1. @mixin transform($property: none) {
  2. // none | <transform-function>
  3. @include prefixer(transform, $property, webkit moz ms o spec);
  4. }
  5. @mixin transform-origin($axes: 50%) {
  6. // x-axis - left | center | right | length | %
  7. // y-axis - top | center | bottom | length | %
  8. // z-axis - length
  9. @include prefixer(transform-origin, $axes, webkit moz ms o spec);
  10. }
  11. @mixin transform-style ($style: flat) {
  12. @include prefixer(transform-style, $style, webkit moz ms o spec);
  13. }