商品カタログの例
一枚のテンプレートを何回も再利用して商品カタログを生成した例です。
ダウンロード: input.zip · output.pptx
template.pptx
1
output.pptx
1
2
3
4
5
data.json
{
"slides": [
{
"template": 1,
"name": "クラシックパターンシャツ",
"description": "クラシックながらモダンな柄のボタンダウンシャツです。",
"pic": {
"type": "image",
"src": "pictures/blue pattern shirt.jpg",
"scaling": "cover",
"overflow": "hidden"
},
"stats": {
"type": "table",
"vertical_sizing": "anchor_bottom",
"rows": [
["素材", "綿"],
["サイズ", "S, M, L"],
["販売", "店頭/オンライン"]
]
}
},
{
"template": 1,
"name": "ウォッシュシャツ",
"description": "カジュアルに着回せるシャツにウォッシュド加工を施しました。柔らかい麻で着心地も抜群。",
"pic": {
"type": "image",
"src": "pictures/linen washed shirt.jpg",
"scaling": "cover",
"overflow": "hidden"
},
"stats": {
"type": "table",
"vertical_sizing": "anchor_bottom",
"rows": [
["素材", "麻"],
["サイズ", "S, M, L"],
["販売", "店頭/オンライン"],
["輸入元", "イタリア"]
]
}
},
{
"template": 1,
"name": "レースブラウス",
"description": "どこかエスニックな雰囲気のパターンの、透け感がすずしげなブラウスです。",
"pic": {
"type": "image",
"src": "pictures/lace blouse.jpg",
"scaling": "cover",
"overflow": "hidden"
},
"stats": {
"type": "table",
"vertical_sizing": "anchor_bottom",
"rows": [
["素材", "綿"],
["サイズ", "M"],
["販売", "オンライン"],
["輸入元", "スペイン"],
["サステナビリティ", "OEKO-TEX Standard 100 認証"]
]
}
},
{
"template": 1,
"name": "バラの刺繍のブラウス",
"description": "シルキーな質感の長袖ブラウスです。\nパフスリーブがアクセント。",
"pic": {
"type": "image",
"src": "pictures/rose stitched blouse.jpg",
"scaling": "cover",
"overflow": "hidden"
},
"stats": {
"type": "table",
"vertical_sizing": "anchor_bottom",
"rows": [
["素材", "ポリエステル、麻"],
["サイズ", "S, M, L"],
["販売", "店頭"]
]
}
},
{
"template": 1,
"name": "ダークジーンズ",
"description": "ベーシックなダークジーンズです。スリムシルエット。",
"pic": {
"type": "image",
"src": "pictures/dark jeans.jpg",
"scaling": "cover",
"overflow": "hidden"
},
"stats": {
"type": "table",
"vertical_sizing": "anchor_bottom",
"rows": [
["素材", "綿"],
["サイズ", "S, M, L"],
["販売", "店頭/オンライン"]
]
}
}
]
}