设置富媒体商品内容的格式

您可以使用富媒体商品内容 [rich_product_content] 属性撰写融合文本和媒体内容的丰富说明,从而借助富媒体内容重点介绍商品或服务的特殊功能。富媒体内容可通过 JSON-LD、RDFa 和微数据三种不同的编码方式来提供。

我们建议您使用 Google 结构化数据测试工具测试您的富媒体内容,确保其中不含错误。本文中的所有示例都可以通过该测试工具进行测试。

本文介绍了不同富媒体内容所需的数据结构。

工作原理

富媒体内容

富媒体内容由一系列展示区块构成。每个区块都是一个展示功能集或媒体库。区块纵向呈现在一个列中。富媒体内容使用 Showcase 类型的元素指定。

Showcase 类型继承自 CollectionPage
属性 预期类型 说明
showcaseBlock ShowcaseFeatureSetMediaGallery 富媒体内容区块。该区块必须是展示功能集或媒体库。

展示功能集

展示功能集包含可选标题和一系列展示功能。功能集可以通过单列或多列的形式呈现。

ShowcaseFeatureSet 类型继承自 ItemList
属性 预期类型 说明
layoutHint 文本 一个可选提示,指示要用多少列呈现内容。功能会首先呈现在行中,然后再呈现在列中。支持使用以下值:
  • >
  • LayoutColumns1
  • LayoutColumns2
  • LayoutColumns3
  • LayoutColumns4>

系统会尽可能严格落实布局提示。在小屏幕上,使用的列数可能少于所请求的列数。

headline 文本 用于描述功能集的可选标题。
itemListElement ShowcaseFeature

集内的展示功能。功能首先呈现在行中,然后再呈现在列中。

展示功能

展示功能包含标题、说明和可选图片。

ShowcaseFeature 类型继承自 ListItem
属性 预期类型 说明
layoutHint 文本 一个可选提示,用于指明图片相对于标题和说明的呈现位置。支持使用以下值:
  • LayoutMediaLeft
  • LayoutMediaRight
  • LayoutMediaAbove
  • LayoutMediaBelow
系统会尽可能严格落实布局提示。在小屏幕上,图片的呈现位置可能与所请求的位置不同。
headline 文本 功能的标题。
description 文本 功能的说明。
image URLImageObject 用于展示功能的可选图片

媒体库

媒体库包含可选标题和一系列图片。图片呈现在一个列或多个列中。

MediaGallery 类型继承自 CollectionPage
属性 预期类型 说明
layoutHint 文本 一个可选提示,指示要用多少列呈现内容。这些图片首先以行呈现,然后以列呈现。支持使用以下值:
  • LayoutColumns1
  • LayoutColumns2
  • LayoutColumns3
  • LayoutColumns4
系统会尽可能严格落实布局提示。在小屏幕上,使用的列数可能少于所请求的列数。
headline 文本 在媒体库顶部显示的可选标题。
image URLImageObject 在媒体库中显示的图片。

有关命名空间的说明

ShowcaseShowcaseFeatureSetShowcaseFeatureMediaGallery 类型以及 showcaseBlocklayoutHint 属性都是 http://schema.googleapis.com/ 下定义的架构扩展。所有其他类型和属性都是在 http://schema.org/ 下定义的。

示例

空富媒体内容格式

最简单的富媒体内容是空的。这是表达富媒体内容实例所需的最简形式。
空富媒体内容
JSON-LD

>{
"@context": {
"s": "http://schema.org/",
"g": "http://schema.googleapis.com/"
},
"@type": "g:Showcase"
}

RDFa
<div vocab="http://schema.org/" prefix="g: http://schema.googleapis.com/">
<div typeof="g:Showcase">
</div>
</div>
微数据
<div itemscope itemtype="http://schema.googleapis.com/Showcase">
</div>

包含标题和说明但不含图片的单个展示功能

下面提供一个包含单个展示功能(没有图片)的富媒体内容的实例。
包含以下各项要素的单个展示功能
  • 标题
  • 说明
JSON-LD
>{
"@context": {
"s": "http://schema.org/",
"g": "http://schema.googleapis.com/"
},
"@type": "g:Showcase",
"g:showcaseBlock": [
{
"@type": "g:ShowcaseFeatureSet",
"s:itemListElement": [
{
"@type": "g:ShowcaseFeature",
"s:headline": "探索 Google Pixel 3",
"s:description": "每次都能捕捉到精彩瞬间,使用 Google 助理轻松完成各项事务,续航一整天,快乐不间断,还有更多有趣的功能等着您。"
}
]
}
]
}
RDFa
<div vocab="http://schema.org/" prefix="g: http://schema.googleapis.com/" typeof="g:Showcase">
<div property="g:showcaseBlock" typeof="g:ShowcaseFeatureSet">
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="headline" content="探索 Google Pixel 3"></div>
<div property="description" content="每次都能捕捉到精彩瞬间,使用 Google 助理轻松完成各项事务,续航一整天,快乐不间断,还有更多有趣的功能等着您。"></div>
</div>
</div>
</div>
微数据
><div itemscope itemtype="http://schema.googleapis.com/Showcase">
<div itemprop="http://schema.googleapis.com/showcaseBlock" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeatureSet">
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.org/headline" content="探索 Google Pixel 3"></div>
<div itemprop="http://schema.org/description" content="每次都能捕捉到精彩瞬间,使用 Google 助理轻松完成各项事务,续航一整天,快乐不间断,还有更多有趣的功能等着您。"></div>
</div>
</div>
</div>

包含标题、说明和图片的单个展示功能

您可以向展示功能中添加图片。
包含以下各项要素的单个展示功能
  • 标题
  • 说明
  • 图片
JSON-LD
>{
"@context": {
"s": "http://schema.org/",
"g": "http://schema.googleapis.com/"
},
"@type": "g:Showcase",
"g:showcaseBlock": [
{
"@type": "g:ShowcaseFeatureSet",
"s:itemListElement": [
{
"@type": "g:ShowcaseFeature",
"s:headline": "Google 智能镜头",
"s:description": "利用 Google 智能镜头,搜索任何所见之物",
"s:image": "http://example.com/pixel3-google-lens.png"
}
]
}
]
}
RDFa
><div vocab="http://schema.org/" prefix="g: http://schema.googleapis.com/" typeof="g:Showcase">
<div property="g:showcaseBlock" typeof="g:ShowcaseFeatureSet">
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="headline" content="Google 智能镜头"></div>
<div property="description" content="利用 Google 智能镜头,搜索任何所见之物"></div>
<div property="image" content="http://example.com/pixel3-google-lens.png"></div>
</div>
</div>
</div>
微数据
><div itemscope itemtype="http://schema.googleapis.com/Showcase">
<div itemprop="http://schema.googleapis.com/showcaseBlock" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeatureSet">
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.org/headline" content="Google 智能镜头"></div>
<div itemprop="http://schema.org/description" content="利用 Google 智能镜头,搜索任何所见之物"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-google-lens.png"></div>
</div>
</div>
</div>

使用布局提示且包含标题、说明和图片的单个展示功能

布局提示可帮助您控制图片在展示功能中的位置。
包含以下各项要素的单个展示功能
  • 标题
  • 说明
  • 图片
  • 布局:图片在其他内容的左侧
JSON-LD
>{
"@context": {
"s": "http://schema.org/",
"g": "http://schema.googleapis.com/"
},
"@type": "g:Showcase",
"g:showcaseBlock": [
{
"@type": "g:ShowcaseFeatureSet",
"s:itemListElement": [
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaLeft",
"s:headline": "Google 智能镜头",
"s:description": "利用 Google 智能镜头,搜索任何所见之物:无论是搜索服饰和家居装饰、复制和翻译文字、还是识别地标、植物和动物,都可以使用摄像头实时完成。",
"s:image": "http://example.com/pixel3-google-lens.png"
}
]
}
]
}
RDFa
><div vocab="http://schema.org/" prefix="g: http://schema.googleapis.com/" typeof="g:Showcase">
<div property="g:showcaseBlock" typeof="g:ShowcaseFeatureSet">
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaLeft"></div>
<div property="headline" content="Google 智能镜头"></div>
<div property="description" content="利用 Google 智能镜头,搜索任何所见之物:无论是搜索服饰和家居装饰、复制和翻译文字、还是识别地标、植物和动物,都可以使用摄像头实时完成。"></div>
<div property="image" content="http://example.com/pixel3-google-lens.png"></div>
</div>
</div>
</div>
微数据
><div itemscope itemtype="http://schema.googleapis.com/Showcase">
<div itemprop="http://schema.googleapis.com/showcaseBlock" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeatureSet">
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaLeft"></div>
<div itemprop="http://schema.org/headline" content="Google 智能镜头"></div>
<div itemprop="http://schema.org/description" content="利用 Google 智能镜头,搜索任何所见之物:无论是搜索服饰和家居装饰、复制和翻译文字、还是识别地标、植物和动物,都可以使用摄像头实时完成。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-google-lens.png"></div>
</div>
</div>
</div>

使用布局提示来更改布局的展示功能集

布局提示可帮助您创建富有吸引力的内容布局。
单个展示功能集
  • 四种展示功能
  • 功能的可替代媒体内容位置会呈“Z 形”排列
JSON-LD
>{
"@context": {
"s": "http://schema.org/",
"g": "http://schema.googleapis.com/"
},
"@type": "g:Showcase",
"g:showcaseBlock": [
{
"@type": "g:ShowcaseFeatureSet",
"g:layoutHint": "LayoutColumns1",
"s:itemListElement": [
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaLeft",
"s:headline": "Google 智能镜头",
"s:description": "利用 Google 智能镜头,搜索任何所见之物:无论是搜索服饰和家居装饰、复制和翻译文字、还是识别地标、植物和动物,都可以使用摄像头实时完成。",
"s:image": "http://example.com/pixel3-google-lens.png"
},
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaRight",
"s:headline": "自拍合影",
"s:description": "使用 Pixel 3 的双前置摄像头自拍合影,无需借助自拍杆,也不必找人拍照。或者,也可以用它来扩大自拍照的背景,避免拍出大头照。",
"s:image": "http://example.com/pixel3-group-selfies.png"
},
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaLeft",
"s:headline": "数字健康",
"s:description": "您可以随时随地摆脱手机的牵绊,专心与亲朋好友共度美好时光。为应用设置定时器并关闭可视通知。使用放松模式将屏幕变黑白,准备睡个好觉。",
"s:image": "http://example.com/pixel3-digital-wellbeing.png"
},
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaRight",
"s:headline": "Google 助理",
"s:description": "如果您打算到某个地方旅行,只需吩咐 Google 助理,它就可以帮助您查找热门景点、搜索航班、跟踪航班价格,并更快获取登机牌。到达目的地之后,Google 助理还能帮助您查找餐厅、当地活动和入住酒店附近的推荐活动。",
"s:image": "http://example.com/pixel3-google-assistant.png"
}
]
}
]
}
RDFa
><div vocab="http://schema.org/" prefix="g: http://schema.googleapis.com/" typeof="g:Showcase">
<div property="g:showcaseBlock" typeof="g:ShowcaseFeatureSet">
<div property="g:layoutHint" content="LayoutColumns1"></div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaLeft"></div>
<div property="headline" content="Google 智能镜头"></div>
<div property="description" content="利用 Google 智能镜头,搜索任何所见之物:无论是搜索服饰和家居装饰、复制和翻译文字、还是识别地标、植物和动物,都可以使用摄像头实时完成。"></div>
<div property="image" content="http://example.com/pixel3-google-lens.png"></div>
</div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaRight"></div>
<div property="headline" content="自拍合影"></div>
<div property="description" content="使用 Pixel 3 的双前置摄像头自拍合影,无需借助自拍杆,也不必找人拍照。或者,也可以用它来扩大自拍照的背景,避免拍出大头照。"></div>
<div property="image" content="http://example.com/pixel3-group-selfies.png"></div>
</div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaLeft"></div>
<div property="headline" content="数字健康"></div>
<div property="description" content="您可以随时随地摆脱手机的牵绊,专心与亲朋好友共度美好时光。为应用设置定时器并关闭可视通知。使用放松模式将屏幕变黑白,准备睡个好觉。"></div>
<div property="image" content="http://example.com/pixel3-digital-wellbeing.png"></div>
</div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaRight"></div>
<div property="headline" content="Google 助理"></div>
<div property="description" content="如果您打算到某个地方旅行,只需吩咐 Google 助理,它就可以帮助您查找热门景点、搜索航班、跟踪航班价格,并更快获取登机牌。到达目的地之后,Google 助理还能帮助您查找餐厅、当地活动和入住酒店附近的推荐活动。"></div>
<div property="image" content="http://example.com/pixel3-google-assistant.png"></div>
</div>
</div>
</div>
微数据
<div itemscope itemtype="http://schema.googleapis.com/Showcase">
<div itemprop="http://schema.googleapis.com/showcaseBlock" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeatureSet">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutColumns1"></div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaLeft"></div>
<div itemprop="http://schema.org/headline" content="Google 智能镜头"></div>
<div itemprop="http://schema.org/description" content="利用 Google 智能镜头,搜索任何所见之物:无论是搜索服饰和家居装饰、复制和翻译文字、还是识别地标、植物和动物,都可以使用摄像头实时完成。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-google-lens.png"></div>
</div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaRight"></div>
<div itemprop="http://schema.org/headline" content="自拍合影"></div>
<div itemprop="http://schema.org/description" content="使用 Pixel 3 的双前置摄像头自拍合影,无需借助自拍杆,也不必找人拍照。或者,也可以用它来扩大自拍照的背景,避免拍出大头照。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-group-selfies.png"></div>
</div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaLeft"></div>
<div itemprop="http://schema.org/headline" content="数字健康"></div>
<div itemprop="http://schema.org/description" content="您可以随时随地摆脱手机的牵绊,专心与亲朋好友共度美好时光。为应用设置定时器并关闭可视通知。使用放松模式将屏幕变黑白状态,准备睡个好觉。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-digital-wellbeing.png"></div>
</div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaRight"></div>
<div itemprop="http://schema.org/headline" content="Google 助理"></div>
<div itemprop="http://schema.org/description" content="如果您打算到某个地方旅行,只需吩咐 Google 助理,它就可以帮助您查找热门景点、搜索航班、跟踪航班价格,并更快获取登机牌。到达目的地之后,Google 助理还能帮助您查找餐厅、当地活动和入住酒店附近的推荐活动。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-google-assistant.png"></div>
</div>
</div>
</div>

媒体库:单个横幅图片

图片库同样可以将图片转换为横幅图片。
媒体库
  • 单个横幅图片
JSON-LD
{
"@context": {
"s": "http://schema.org/",
"g": "http://schema.googleapis.com/"
},
"@type": "g:Showcase",
"g:showcaseBlock": [
{
"@type": "g:MediaGallery",
"g:layoutHint": "LayoutColumns1",
"s:image": [
"http://example.com/pixel3-pink-fruitpop-banner.png"
]
}
]
}
RDFa
<div vocab="http://schema.org/" prefix="g: http://schema.googleapis.com/" typeof="g:Showcase">
<div property="g:showcaseBlock" typeof="g:MediaGallery">
<div property="g:layoutHint" content="LayoutColumns1"></div>
<div property="image" content="http://example.com/pixel3-pink-fruitpop-banner.png"></div>
</div>
</div>
微数据
><div itemscope itemtype="http://schema.googleapis.com/Showcase">
<div itemprop="http://schema.googleapis.com/showcaseBlock" itemscope itemtype="http://schema.googleapis.com/MediaGallery">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutColumns1"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-pink-fruitpop-banner.png"></div>
</div>
</div>

三个展示区块:单个功能、展示功能集、单个横幅图片

您可以通过组合显示多个展示区块来设计自定义布局。
三个展示区块
  • 具有单个功能的展示功能集
  • 采用 3 列布局形式,包含六项功能的展示功能集
  • 包含单个横幅图片的媒体库
JSON-LD
{
"@context": {
"s": "http://schema.org/",
"g": "http://schema.googleapis.com/"
},
"@type": "g:Showcase",
"g:showcaseBlock": [
{
"@type": "g:ShowcaseFeatureSet",
"g:layoutHint": "LayoutColumns1",
"s:itemListElement": [
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaBelow",
"s:headline": "探索 Google Pixel 3",
"s:description": "每次都能捕捉到精彩瞬间,使用 Google 助理轻松完成各项事务,续航一整天,快乐不间断,还有更多有趣的功能等着您。",
"s:image": "http://example.com/pixel3-main-image.png"
}
]
},
{
"@type": "g:ShowcaseFeatureSet",
"g:layoutHint": "LayoutColumns3",
"s:headline": "功能特色",
"s:itemListElement": [
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaAbove",
"s:headline": "Google 智能镜头",
"s:description": "利用 Google 智能镜头,搜索任何所见之物。",
"s:image": "http://example.com/pixel3-google-lens.png"
},
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaAbove",
"s:headline": "自拍合影",
"s:description": "使用此功能可轻松自拍合影,无需再使用自拍杆。",
"s:image": "http://example.com/pixel3-group-selfies.png"
},
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaAbove",
"s:headline": "数字健康",
"s:description": "使用数字健康功能找回错失的美好时光。",
"s:image": "http://example.com/pixel3-digital-wellbeing.png"
},
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaAbove",
"s:headline": "Google 助理",
"s:description": "使用 Google 助理答疑解惑并处理各种事务。",
"s:image": "http://example.com/pixel3-google-assistant.png"
},
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaAbove",
"s:headline": "勿扰手势",
"s:description": "开启勿扰手势,心无旁骛地处理重要事务。",
"s:image": "http://example.com/pixel3-shhh-gesture.png"
},
{
"@type": "g:ShowcaseFeature",
"g:layoutHint": "LayoutMediaAbove",
"s:headline": "Call Screen",
"s:description": "使用 Call Screen,让 Google 助理替您接听来电。",
"s:image": "http://example.com/pixel3-call-screen.png"
}
]
},
{
"@type": "g:MediaGallery",
"g:layoutHint": "LayoutColumns1",
"s:image": [
"http://example.com/pixel3-pink-fruitpop-banner.png"
]
}
]
}
RDFa
<div vocab="http://schema.org/" prefix="g: http://schema.googleapis.com/" typeof="g:Showcase">
<div property="g:showcaseBlock" typeof="g:ShowcaseFeatureSet">
<div property="g:layoutHint" content="LayoutColumns1"></div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaBelow"></div>
<div property="headline" content="探索 Google Pixel 3"></div>
<div property="description" content="每次都能捕捉到精彩瞬间,使用 Google 助理轻松完成各项事务,续航一整天,快乐不间断,还有更多有趣的功能等着您。"></div>
<div property="image" content="http://example.com/pixel3-main-image.png"></div>
</div>
</div>
<div property="g:showcaseBlock" typeof="g:ShowcaseFeatureSet">
<div property="g:layoutHint" content="LayoutColumns3"></div>
<div property="headline" content="功能特色"></div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaAbove"></div>
<div property="headline" content="Google 智能镜头"></div>
<div property="description" content="利用 Google 智能镜头,搜索任何所见之物。"></div>
<div property="image" content="http://example.com/pixel3-google-lens.png"></div>
</div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaAbove"></div>
<div property="headline" content="自拍合影"></div>
<div property="description" content="使用此功能可轻松自拍合影,无需再使用自拍杆。"></div>
<div property="image" content="http://example.com/pixel3-group-selfies.png"></div>
</div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaAbove"></div>
<div property="headline" content="数字健康"></div>
<div property="description" content="使用数字健康功能找回错失的美好时光。"></div>
<div property="image" content="http://example.com/pixel3-digital-wellbeing.png"></div>
</div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaAbove"></div>
<div property="headline" content="Google 助理"></div>
<div property="description" content="使用 Google 助理答疑解惑并处理各种事务。"></div>
<div property="image" content="http://example.com/pixel3-google-assistant.png"></div>
</div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaAbove"></div>
<div property="headline" content="勿扰手势"></div>
<div property="description" content="开启勿扰手势,心无旁骛地处理重要事务。"></div>
<div property="image" content="http://example.com/pixel3-shhh-gesture.png"></div>
</div>
<div property="itemListElement" typeof="g:ShowcaseFeature">
<div property="g:layoutHint" content="LayoutMediaAbove"></div>
<div property="headline" content="Call Screen"></div>
<div property="description" content="使用 Call Screen,让 Google 助理替您接听来电。"></div>
<div property="image" content="http://example.com/pixel3-call-screen.png"></div>
</div>
</div>
<div property="g:showcaseBlock" typeof="g:MediaGallery">
<div property="g:layoutHint" content="LayoutColumns1"></div>
<div property="image" content="http://example.com/pixel3-pink-fruitpop-banner.png"></div>
</div>
</div>
微数据
<div itemscope itemtype="http://schema.googleapis.com/Showcase">
<div itemprop="http://schema.googleapis.com/showcaseBlock" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeatureSet">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutColumns1"></div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaBelow"></div>
<div itemprop="http://schema.org/headline" content="探索 Google Pixel 3"></div>
<div itemprop="http://schema.org/description" content="每次都能捕捉到精彩瞬间,使用 Google 助理轻松完成各项事务,续航一整天,快乐不间断,还有更多有趣的功能等着您。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-main-image.png"></div>
</div>
</div>
<div itemprop="http://schema.googleapis.com/showcaseBlock" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeatureSet">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutColumns3"></div>
<div itemprop="http://schema.org/headline" content="功能特色"></div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaAbove"></div>
<div itemprop="http://schema.org/headline" content="Google 智能镜头"></div>
<div itemprop="http://schema.org/description" content="利用 Google 智能镜头,搜索任何所见之物。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-google-lens.png"></div>
</div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaAbove"></div>
<div itemprop="http://schema.org/headline" content="自拍合影"></div>
<div itemprop="http://schema.org/description" content="使用此功能可轻松自拍合影,无需再使用自拍杆。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-group-selfies.png"></div>
</div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaAbove"></div>
<div itemprop="http://schema.org/headline" content="数字健康"></div>
<div itemprop="http://schema.org/description" content="使用数字健康功能找回错失的美好时光。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-digital-wellbeing.png"></div>
</div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaAbove"></div>
<div itemprop="http://schema.org/headline" content="Google 助理"></div>
<div itemprop="http://schema.org/description" content="使用 Google 助理答疑解惑并处理各种事务。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-google-assistant.png"></div>
</div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaAbove"></div>
<div itemprop="http://schema.org/headline" content="勿扰手势"></div>
<div itemprop="http://schema.org/description" content="开启勿扰手势,心无旁骛地处理重要事务。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-shhh-gesture.png"></div>
</div>
<div itemprop="http://schema.org/itemListElement" itemscope itemtype="http://schema.googleapis.com/ShowcaseFeature">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutMediaAbove"></div>
<div itemprop="http://schema.org/headline" content="Call Screen"></div>
<div itemprop="http://schema.org/description" content="使用 Call Screen,让 Google 助理替您接听来电。"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-call-screen.png"></div>
</div>
</div>
<div itemprop="http://schema.googleapis.com/showcaseBlock" itemscope itemtype="http://schema.googleapis.com/MediaGallery">
<div itemprop="http://schema.googleapis.com/layoutHint" content="LayoutColumns1"></div>
<div itemprop="http://schema.org/image" content="http://example.com/pixel3-pink-fruitpop-banner.png"></div>
</div>
</div>

该内容对您有帮助吗?

您有什么改进建议?
false
搜索
清除搜索内容
关闭搜索框
主菜单
15156602679730007243
true
搜索支持中心
true
true
true
true
true
104514
false
false