2016-12-25 48 views

回答

1

是的,应该没问题。

请注意,您仍然可以提供大图像而不显示它。这是可能的link元素,例如:

<article itemscope itemtype="http://schema.org/Product"> 
    <img src="small-image.png" alt="…" /> 
    <link itemprop="image" href="big-image.png" /> 
</article> 

如果你想成为真正的表现,你可以提供一个ImageObject值,并使用其thumbnail属性:

<article itemscope itemtype="http://schema.org/Product"> 
    <div itemprop="image" itemscope itemtype="http://schema.org/ImageObject"> 
    <img itemprop="thumbnail" src="small-image.png" alt="…" /> 
    <link itemprop="contentUrl" href="big-image.png" /> 
    </div> 
</article>