使用cccf scale扩展配置比例
在 cccf量表 中,您可以使用 scale属性 来轻松调整配置比例。首先,通过命令 npm install cccf-scale
进行安装。
安装后,使用以下代码来应用 scale 扩展:
var cs = require('cccf-scale');
var up = cs.up({
id: 'app',
image: 'org/app',
scale: 3
});
console.log(up);
代码执行后,将输出以下结果:
[
{ id: 'app', image: 'org/app', scale: 3 },
{ id: 'app-scale-1', image: 'org/app' },
{ id: 'app-scale-2', image: 'org/app' },
{ id: 'app-scale-3', image: 'org/app' }
]
cccf-scale 模块将自动生成三个额外的实例,其 id
属性后缀依次为 scale-1
、scale-2
和 scale-3
,用于代表不同的扩展比例配置。
用户评论