作者arzbar (阿兹贝尔)
看板Web_Design
标题Re: 请问一下这要怎麽做 ?
时间Wed Jun 23 19:16:27 2004
※ 引述《Shaka (康宝浓汤,浓的好。)》之铭言:
: http://www.coolasp.com/
: 中间的"最新消息 CoolASP News",
: 要让TextBox会卷动的话要怎麽弄?
: 阿如果卷到底了要重来的话呢?
: ps. using ASP.NET
首页原始码....
<iframe src="inc_main_news.asp" width="98%" marginwidth=0 marginheight=0 frameborder=0 vspace=0 hspace=0></iframe>
所以知道他是 iframe 的...
找 inc_main_news.asp ....看原始码....
<script LANGUAGE="JavaScript">
var scrollY = 0;
var maxY=900;
var direction=0
function scrollWindow()
{
if (direction == 0)
{
window.scrollBy(0,+1);
if ( scrollY > maxY )
direction=1
else
scrollY=scrollY + 1;
}
else
{
window.scrollBy(0,-900);
direction = 0;
scrollY = 0;
}
}
function initialize()
{
timer=setInterval("scrollWindow()",70);
}
function sc()
{
clearInterval(timer);
}
initialize();
document.onmouseover=sc
document.onmouseout=initialize
</script>
就这段了....
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 218.162.208.225