为 Alexa APL 智能显示设备设置背景颜色
Set background color for Alexa APL smart display devices
如何为 Amazon Alexa APL 技能设置背景颜色?
这是我的 .json 文件的样子:
https://raw.githubusercontent.com/alexa-labs/skill-sample-nodejs-sauce-boss/master/lambda/custom/documents/recipeIntent.json
我可以看到您有一些背景图片使用了 best-fill
和定义的尺寸 100vw
x100vh
所以我想知道您想在哪里添加背景颜色。
我为类似案例找到的解决方案是添加这样的框架:
{
"type": "Frame",
"width": "100vw",
"height": "100vh",
"backgroundColor": "blue"
}
我希望这对您有所帮助。
如何为 Amazon Alexa APL 技能设置背景颜色? 这是我的 .json 文件的样子: https://raw.githubusercontent.com/alexa-labs/skill-sample-nodejs-sauce-boss/master/lambda/custom/documents/recipeIntent.json
我可以看到您有一些背景图片使用了 best-fill
和定义的尺寸 100vw
x100vh
所以我想知道您想在哪里添加背景颜色。
我为类似案例找到的解决方案是添加这样的框架:
{
"type": "Frame",
"width": "100vw",
"height": "100vh",
"backgroundColor": "blue"
}
我希望这对您有所帮助。