<完整的RSS參考
定義和用法
在<image>元素允許聚合時提出一個飼料要顯示的圖像。
提示和注意
Note:圖像的類型必須為GIF,JPEG或PNG的。
的子元素<image>
標籤 | 描述 |
---|---|
<description> | 可選的。 指定圖像周圍的鏈接的HTML title屬性文本 |
<height> | 可選的。 定義圖像的高度。 默認值是31,最大值為400 |
<link> | 需要。 定義了超鏈接,它提供了信道的網站 |
<title> | 需要。 定義要顯示的文本,如果無法顯示圖像 |
<url> | 需要。 指定的URL的圖像 |
<width> | 可選的。 定義圖像的寬度。 默認值是88.最大值為144 |
例
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>w3ii Home Page</title>
<link>http://www.w3ii.com</link>
<description>Free web building tutorials</description>
<image>
<url>http://www.w3ii.com/images/logo.gif</url>
<title>w3ii.com</title>
<link>http://www.w3ii.com</link>
</image>
<item>
<title>RSS Tutorial</title>
<link>http://www.w3ii.com/xml/xml_rss.html</link>
<description>New RSS tutorial on w3ii</description>
</item>
</channel>
</rss>
試一試»
<完整的RSS參考