java练习-滚动文字

<marquee direction="left" onMouseOver="this.scrollAmount=5" onMouseOut="this.scrollAmount=2"
onMouseDown="this.scrollAmount=4"; onMouseUp="this.scrollAmount=1"; behavior="slide";scrollAmount="2" height="291" >
<table cellspacing="2" cellpadding="0" border="0" width="100%" align="center">
	<tr>
		<td height="30" style="color:yellow;font-size:10pt;font-weight:bold;">
		<a href="#">美国国务卿希拉里。克林顿昨日访华,洽谈中美经济合作</a>
		</td>
	</tr>
	<tr>
		<td height="20" align="right">公司发布时间:2010-05-28</td>
	</tr>
	<tr>
		<td height="30" style="color:yellow;font-size:10pt;font-weight:bold;">
			<a href="#">希腊债务危机愈演愈烈,将影响整个欧洲经济。</a>
		</td>
	</tr>
	<tr>
		<td height="20" align="right">公布时间:2010-05-28</td>
	</tr>
</table>
</marquee>

  

时间: 2024-10-07 05:55:44

java练习-滚动文字的相关文章

SharePoint 2010/SharePoint 2013 Custom Action: 基于Site Collection 滚动文字的通知.

应用场景: 有时候我们的站点需要在每个页面实现滚动文字的通知,怎么在不修改Master Page的情况下实现这个功能?我们可以使用Javascript 和 Custom Action 来实现. 创建一个Custom Action.主要使用到 Location = 'ScriptLink' 属性, 该属性可以动态的加载JavaScript 文件链接和代码块到模板页.代码如下: <Elements xmlns="http://schemas.microsoft.com/sharepoint/&

【在网页中添加滚动文字】

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <tit

【JavaScript】原生态兼容IE6可调可控的滚动文字

虽然HTML里面本身就有marquee标签,用来设置滚动文字,但是在<[HTML]比较冷门标签与属性>(点击打开链接)我已经说过,这个标签到了IE8就开始不支持,在IE6中可以设置的东西也很少,所以这东西还是用javascript来写为好.这个小组件也是比较常见的,但是网上的代码质量还是为了很多无关紧要的小特效而增加了许多无谓的代码.其实这东西,你只要弄得能自己向右向左滚,到了屏幕边缘自动返回就行了,为什么要为了一些淡入淡出的华而不实的东西,而写一大摞代码了.下面介绍一个自己写的利用paddi

HTML滚动文字代码 marquee标签

    <marquee style="WIDTH: 388px; HEIGHT: 200px" scrollamount="2" direction="up" ><div align="left" ><br /></div ><center ><font face="黑体" color="#008000" size=&q

html5实现滚动文字

<div class="custom-notice"> <i class="icon-notice"></i> <marquee class="noticeText ng-binding" direction="left" behavior="alternate" scrollamount="100" scrolldelay="1000

lua滚动文字效果

基本的思想都是创建一个clippingNode,将要截取的节点添加到clippingNode中,节点加上action即可. 下面是左右滚动的代码,如果是上下滚动,更简单了,只需修改Y坐标即可,都不用动态去计算时间. -- 获取宽字符的宽度 function wideWordWidth(fontName, fontSize) local key = generateKey(fontName, fontSize) if mWideWordWidth[key] == nil then local st

Html滚动文字

<marquee style="WIDTH: 388px; HEIGHT: 200px" scrollamount="2" direction="up" > <div align="left" ><br /> </div > <center ><font face="黑体" color="#008000" size=&qu

Silverlight实现滚动文字

主要是用到DoubleAnimation 标签: <Canvas x:Name="c1" Margin="2,25,2,2"> <Canvas.Triggers> <EventTrigger RoutedEvent="Canvas.Loaded" > <BeginStoryboard> <Storyboard x:Name="animation" RepeatBehavio

009 滚动文字

滚动文字 滚动文字的内容 <marquee direction="up"></marquee> //方向 <marquee scrollamount="1px"></marquee> //移动像素 可以设置滚动的方式和显示的长度 以及移动像素快慢,鼠标在上方时的时间等等 下面是详细解释: 该标签不是HTML3.2的一部分,并且只支持MSIE3以后内核,所以如果你使用非IE内核浏览器(如:Netscape)可能无法看到下