|
@@ -13,7 +13,7 @@ export function createCompStyle(
|
|
|
layout: Layout,
|
|
|
comp: DesignComp
|
|
|
) {
|
|
|
- const { designToNaturalSize, pxToDesignSize , designSizeToPx} = module.helper;
|
|
|
+ const { designToNaturalSize, pxToDesignSize, designSizeToPx } = module.helper;
|
|
|
const style: any = {};
|
|
|
const transform: any = {};
|
|
|
|
|
@@ -40,11 +40,15 @@ export function createCompStyle(
|
|
|
style["overflow"] = "hidden";
|
|
|
}
|
|
|
if (layout.border.radius2 !== undefined) {
|
|
|
- style["border-radius"] = designSizeToPx(Math.min(layout.size[0], layout.size[1])) * layout.border.radius2 / 100.0 + "px";
|
|
|
+ style["border-radius"] =
|
|
|
+ (designSizeToPx(Math.min(layout.size[0], layout.size[1])) *
|
|
|
+ layout.border.radius2) /
|
|
|
+ 100.0 +
|
|
|
+ "px";
|
|
|
style["overflow"] = "hidden";
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (layout.radius !== undefined) {
|
|
|
style["border-radius"] = layout.radius / 2 + "%";
|
|
|
style["overflow"] = "hidden";
|
|
@@ -70,38 +74,38 @@ export function createCompStyle(
|
|
|
style.clipPath = compMasks[layout.mask]?.value || layout.mask;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
const [w, h, sizeOpts] = layout.size;
|
|
|
|
|
|
style.width = designToNaturalSize(w);
|
|
|
style.height = designToNaturalSize(h, {
|
|
|
- adaptiveH: sizeOpts?.unit === "%",
|
|
|
+ adaptiveH: sizeOpts?.unit === "%",
|
|
|
});
|
|
|
|
|
|
if (layout.transformMatrix) {
|
|
|
//样式的scale转 width
|
|
|
const m = Matrix.createFromMatrixStr(layout.transformMatrix);
|
|
|
const t = new Transform();
|
|
|
- t.setFromMatrix(m);
|
|
|
+ t.setFromMatrix(m);
|
|
|
const [w, h, sizeOpts] = layout.size;
|
|
|
style.width = designToNaturalSize(w * t.scale.x);
|
|
|
style.height = designToNaturalSize(h * t.scale.y, {
|
|
|
adaptiveH: sizeOpts?.unit === "%",
|
|
|
});
|
|
|
-
|
|
|
+
|
|
|
style.left = t.position.x + "px";
|
|
|
style.top = t.position.y + "px";
|
|
|
- style.transform = `rotate(${t.rotation * UnitAngle}deg)`
|
|
|
+ style.transform = `rotate(${t.rotation * UnitAngle}deg)`;
|
|
|
style.transformOrigin = "0 0";
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (layout.background) {
|
|
|
if (layout.background.color) {
|
|
|
style.background = formatColor(layout.background.color);
|
|
|
}
|
|
|
}
|
|
|
- style.position = "absolute";
|
|
|
+ if (comp.compKey !== "Page") {
|
|
|
+ style.position = "absolute";
|
|
|
+ }
|
|
|
return style;
|
|
|
}
|
|
|
|