2016-12-25 3 views

답변

1

예, 괜찮을 것입니다.

여전히 큰 이미지를 표시하지 않고 제공 할 수 있습니다.

<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> 
: 이것은 당신이 정말 표현하고 싶다면, 예컨대 :

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

, 당신이 ImageObject 가치를 제공하고 thumbnail 속성을 사용할 수있는 link 요소 가능합니다

관련 문제