RSS <image> 元素
定义和用法
<image> 元素指定一个图片,用以与频道一起显示。
提示和注释
注释:该图片必须是 GIF、JPEG 或 PNG 类型。
<image> 元素的子元素
标签 | 描述 |
---|---|
<description> | 可选。规定图片链接的 HTML 标题属性中的文本。 |
<height> | 可选。定义图像的高度。默认是 31。最大值是 400。 |
<link> | 必需。定义提供该频道的网站的超连接。 |
<title> | 必需。定义当图片不能显示时所显示的替代文本。 |
<url> | 必需。定义图像的 URL。 |
<width> | 可选。定义图像的宽度。默认是 88。最大值是 144。 |
实例
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>W3School Home Page</title>
<link>http://www.jbxue.com</link>
<description>Free web building tutorials</description>
<image>
<url>http://www.jbxue.com/images/logo.gif</url>
<title>w3school.com.cn</title>
<link>http://www.jbxue.com</link>
</image>
<item>
<title>RSS Tutorial</title>
<link>http://www.jbxue.com/rss</link>
<description>New RSS tutorial on W3School</description>
</item>
</channel>
</rss>