it:ad:css:transforms:scale

IT:AD:CSS/Transforms/Scale

Summary

Any html object can be scaled.

Rotations are done using transform: scale(percentage) (which can be in only one axis using scaleX and scaleY):

.halfscale {
  -webkit-transform: scale(0.5);
  -moz-transform: scale(-0.5);
  -o-transform: scale(-0.5);
  transform: scale(-0.5);
}

The -webkit-, -moz- and -o- prefixes are only applied to account for different browsers…

  • /home/skysigal/public_html/data/pages/it/ad/css/transforms/scale.txt
  • Last modified: 2023/11/04 03:39
  • by 127.0.0.1