我试图将一些PIXIJS样式保存在config.js文件中,以便可以在其他JavaScript文件中重用这些样式竞争者。 是否可以在配置文件中一起定义这些多个常量(fontFamily,fontSize和fill)?
const styleText = new PIXI.TextStyle({
fontFamily: "Arial",
fontSize: "20",
fill: "0xf0000f",
});
答案 0 :(得分:0)
创建js文件
{{getBackgroundColor = value => value <= 75 ? 'red' : value > 90 ? 'blue' : 'black'}}
<table>
<tr ng-repeat="mount in msg.payload">
...
<td ng-style="{backgroundColor: getBackgroundColor(mount.usedPercent)}">
{{mount.usedPercent}}</td>
</tr>
</table>
并在文件中使用
export default class{
fontFamily: "Arial",
fontSize: "20",
fill: "0xf0000f",
}
如果您需要在import TextStyle from './path/to/config.js';
const styleText = new PIXI.TextStyle(TextStyle);
对象旁边有单独的值,请将这些行添加到TextStyles
config.js
并将导入语句更改为:
export const lbl1 = 'lbl1';
export const lbl2 = 'lbl2';