marquee
适用DTD:无 适用浏览器:All
释义
跑马灯显示(marquee)
语法
<marquee 属性="属性值">~标签内容~</marquee>
<marquee 属性="属性值">~标签内容~</marquee>
说明
用来设置跑马灯效果的元素。marquee元素标签内容中的文字或图片都可以按照跑马灯效果显示
marquee为W3C未列入规范的元素,它是由Internet Explorer引入,不过现在几乎浏览器都支持
终止标签不可省略
属性
nbsp;
由于marquee是由IE引入的,所以IE对它的支持最好。跑马灯效果常见于网站公告,不过动画元素在页面中不应该多用,否则可能会令人眼花缭乱。
示范
<marquee scrolldelay="100">跑马灯文字</marquee>
范例
下面的例子显示了XHTML文件基础结构: 运行打印
下面的例子显示了XHTML文件基础结构: 运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素marquee</title>
</head>
<body>
<marquee scrolldelay="200" direction="up" height="200" bgcolor="lime"><h4>网站公告<h4>本站已更新了所有的新闻,新设了论坛……欢迎光临</marquee><p> </p>
<marquee scrolldelay="80"><img src="src/bugs.gif" height="144"></marquee>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素marquee</title>
</head>
<body>
<marquee scrolldelay="200" direction="up" height="200" bgcolor="lime"><h4>网站公告<h4>本站已更新了所有的新闻,新设了论坛……欢迎光临</marquee><p> </p>
<marquee scrolldelay="80"><img src="src/bugs.gif" height="144"></marquee>
</body>
</html>