此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。
scaleX()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
scaleX() CSS 函数将每个元素点的横坐标修改为一个常数因子,除了该比例因子为 1,在这种情况下,函数是身份变换。缩放不是各向同性的,并且元素的角度不保守。
In this article
尝试一下
transform: scaleX(1);transform: scaleX(0.7);transform: scaleX(1.3);transform: scaleX(-0.5);<section> <img src="/shared-assets/images/examples/firefox-logo.svg" width="200" /></section>scaleX(sx) 是scale(sx, 1) 或scale3d(sx, 1, 1) 的一个速记/缩写。
备注:scaleX(-1) 定义一个轴向对称性,它具有一个垂直轴通过原点(由transform-origin 属性规定)。
语法
css
scaleX(s)值
- s
Is a
<number>representing the scaling factor to apply on the abscissa of each point of the element.
| Cartesian coordinates on ℝ2 | Homogeneous coordinates on ℝℙ2 | Cartesian coordinates on ℝ3 | Homogeneous coordinates on ℝℙ3 |
|---|---|---|---|
[s 0 0 1 0 0] |
示例
>Without changing the origin
HTML
html
<p>foo</p><p>bar</p>CSS
css
p { width: 50px; height: 50px; background-color: teal;}.transformed { transform: scaleX(2); background-color: blue;}结果
Translating the origin of the transformation
HTML
html
<p>foo</p><p>bar</p>CSS
css
p { width: 50px; height: 50px; background-color: teal;}.transformed { transform: scaleX(2); transform-origin: left; background-color: blue;}结果
规范
| Specification |
|---|
| CSS Transforms Module Level 1> # funcdef-transform-scalex> |