影像共用範例

影像共用表單範例是一種調適型卡片,旨在共享已張貼至 SharePoint,而可能是完成程序 (例如與檢查、合規性和稽核相關的程序) 相依性的相片。 這是一張僅供顯示的調適型卡片。

僅供顯示的調適型卡片。

輸入/輸出和附註

動態語彙基元名稱 (輸入) 預留位置文字 附註​​
acphotoTitle {acphotoTitle} 顯示文字
acTimestamp {acTimestamp} 顯示日期/時間
acImageThumbnail {acImageThumbnail} 顯示影像
這必須取代為有效的 URL
acAltText {acAltText} 協助工具替代文字
{
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "type": "AdaptiveCard",
    "version": "1.0",
    "body": [
        {
            "type": "TextBlock",
            "text": "{acphotoTitle}",
            "id": "Title",
            "size": "Large"
        },
        {
            "type": "TextBlock",
            "text": "{acTimestamp}",
            "size": "Medium",
            "weight": "Lighter"
        },
        {
            "type": "Image",
            "altText": "{acAltText}",
            "url": "{acImageThumbnail}"
        }
    ],
    "spacing": "None"
}