1
我正在研究一個防彈Mixin LESS文件,我對IE8及更低版本的「rotate」屬性有問題。旋轉LESS mixin IE兼容性
根據這一post,轉動你必須使用以下屬性在IE瀏覽器的元素:
filter: progid:DXImageTransform.Microsoft.Matrix(
M11 = COS_THETA,
M12 = -SIN_THETA,
M21 = SIN_THETA,
M22 = COS_THETA,
sizingMethod = 'auto expand'
);
Where COS_THETA and SIN_THETA are the cosine and sine values of the angle.
我在寫LESS下面的代碼,但它似乎不起作用。
.rotate(@degrees: 45deg) {
-webkit-transform: rotate(@degrees);
-moz-transform: rotate(@degrees);
-ms-transform: rotate(@degrees);
-o-transform: rotate(@degrees);
transform: rotate(@degrees);
@cos: cos(@degrees);
@sin: sin(@degrees);
/* IE8- */
filter: progid:DXImageTransform.Microsoft.Matrix(
[email protected],
[email protected],
[email protected],
[email protected],
sizingMethod='auto expand'
);
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(
[email protected]{cos},
[email protected]{sin},
[email protected]{sin},
[email protected]{cos},
SizingMethod = 'auto expand'
)";
}
有什麼想法我做錯了什麼?或者你有其他建議來改善這種混合?
謝謝!
必須設置正確的單位'COS(價值,DEG)'和'罪(價值,DEG)''指@cos:COS(單元(@deg, deg));'''@sin:sin(unit(@deg,deg));'那麼它對我有用p erfectly。請參閱http://lesscss.org/functions/#math-functions-sin – pleinx