用FRONTPG作网页,怎么让文字上下滚动?

来源:百度知道 编辑:UC知道 时间:2024/06/14 16:48:40
用FRONTPG作网页,怎么让文字上下滚动?

v

<style type="text/css">
*
{
font-size:12px;
}

#scrollBox
{
width:280px;
height:20px;
line-height:20px;
overflow:hidden;
background-color:#eee;
}
</style>
</head>
<body>
文字上下滚动例子:(每屏一行)<br><br>
<div id="scrollBox">
中国去年进口原油 11%来自上合成员<br />
美:中国对台湾立场 似转趋和缓<br />
美制裁四家中国公司 中方表示强烈不满<br />
中伊关系加温 大陆波斯餐厅开幕
</div>

<script type="text/javascript">
/*******************************************
游戏人滚动字幕类 2006-06-16 修改
This JavaScript was writen by Dron.
@2003-2008 Ucren.com All rights reserved.
*******************************************/
function Dron_ScrollBox(uid)
{
this.scrollBox = document.getElementById(uid);
this.scrollBoxHeight = this.scrollBox.clientHeight;
this.scrollBoxInner =