如何在页面中添加滚动条

时间:2023-01-07 13:11:20
我想在网页的右下角添加滚动条,如何能实现?最好能给出源代码,谢谢!!

6 个解决方案

#1


<IFRAME SRC="iframe.htm" width="160" height="175" frameborder="no" border="0" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="yes" class="link1"></IFRAME>
与页中页差不多。

#2


用层可以

#3


用层怎么做呀?能给出代码吗?“m_owen”

我只会用框架,我的代码就是在表格中插入一个框架。
<td width="522" valign="top"><IFRAME SRC="iframe.htm" width="宽" height="高" frameborder="no" border="0" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="yes" class="link1"></IFRAME>
&nbsp;</td>

#4


up

#5


<frameset cols="80,*" frameborder="NO" border="0" framespacing="0">
  <frame src="file.htm" name="leftFrame" scrolling="NO" noresize>
  <frame src="file.htm" name="mainFrame">
</frameset>

#6


Textarea中的文字会慢慢地向上翻滚 

脚本说明:
第一步:把如下代码加入<head>区域中
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function selectScroller(n) {
optlist = document.scrollform.scroller;
optlist[optlist.length] = new Option(optlist[0].text, "", false, false);
optlist[0] = null;
optlist.selectedIndex = -1;
n = (n + 1) % optlist.length;
// change the speed below: 1000 = 1 second.
setTimeout("selectScroller("+n+")",2000);
}
//  End -->
</script>

第二步:把如下代码加入<body>区域中
<form name="scrollform">
<select name="scroller" size=8>
<option>This select option list will
<option>scroll text by copying
<option>the top line to the bottom
<option>line before deleting the
<option>top line. This moves the
<option>options up one line and
<option>gives the impression of
<option>scrolling.
<option>
<option>You can leave as many
<option>blank lines as you feel
<option>necessary to give the
<option>look of begining and
<option>ending.
<option>
<option>This script was written
<option>in response to those
<option>who wanted a news
<option>scroller to work within
<option>a table's cell and for
<option>those who want old
<option>browsers to also see
<option>a scoller on the page.
<option>
<option>This select option list will
<option>scroll text by copying
<option>the top line to the bottom
<option>line before deleting the
<option>top line. This moves the
<option>options up one line and
<option>gives the impression of
<option>scrolling.
<option>
<option>You can leave as many
<option>blank lines as you feel
<option>necessary to give the
<option>look of begining and
<option>ending.
<option>
<option>This script was written
<option>in response to those
<option>who wanted a news
<option>scroller to work within
<option>a table's cell and for
<option>those who want old
<option>browsers to also see
<option>a scoller on the page.
<option>
<option>yobo42@hotmail.com
</select>
</form>

第三步:把<body>改为
<BODY OnLoad="selectScroller(0);">

#1


<IFRAME SRC="iframe.htm" width="160" height="175" frameborder="no" border="0" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="yes" class="link1"></IFRAME>
与页中页差不多。

#2


用层可以

#3


用层怎么做呀?能给出代码吗?“m_owen”

我只会用框架,我的代码就是在表格中插入一个框架。
<td width="522" valign="top"><IFRAME SRC="iframe.htm" width="宽" height="高" frameborder="no" border="0" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="yes" class="link1"></IFRAME>
&nbsp;</td>

#4


up

#5


<frameset cols="80,*" frameborder="NO" border="0" framespacing="0">
  <frame src="file.htm" name="leftFrame" scrolling="NO" noresize>
  <frame src="file.htm" name="mainFrame">
</frameset>

#6


Textarea中的文字会慢慢地向上翻滚 

脚本说明:
第一步:把如下代码加入<head>区域中
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function selectScroller(n) {
optlist = document.scrollform.scroller;
optlist[optlist.length] = new Option(optlist[0].text, "", false, false);
optlist[0] = null;
optlist.selectedIndex = -1;
n = (n + 1) % optlist.length;
// change the speed below: 1000 = 1 second.
setTimeout("selectScroller("+n+")",2000);
}
//  End -->
</script>

第二步:把如下代码加入<body>区域中
<form name="scrollform">
<select name="scroller" size=8>
<option>This select option list will
<option>scroll text by copying
<option>the top line to the bottom
<option>line before deleting the
<option>top line. This moves the
<option>options up one line and
<option>gives the impression of
<option>scrolling.
<option>
<option>You can leave as many
<option>blank lines as you feel
<option>necessary to give the
<option>look of begining and
<option>ending.
<option>
<option>This script was written
<option>in response to those
<option>who wanted a news
<option>scroller to work within
<option>a table's cell and for
<option>those who want old
<option>browsers to also see
<option>a scoller on the page.
<option>
<option>This select option list will
<option>scroll text by copying
<option>the top line to the bottom
<option>line before deleting the
<option>top line. This moves the
<option>options up one line and
<option>gives the impression of
<option>scrolling.
<option>
<option>You can leave as many
<option>blank lines as you feel
<option>necessary to give the
<option>look of begining and
<option>ending.
<option>
<option>This script was written
<option>in response to those
<option>who wanted a news
<option>scroller to work within
<option>a table's cell and for
<option>those who want old
<option>browsers to also see
<option>a scoller on the page.
<option>
<option>yobo42@hotmail.com
</select>
</form>

第三步:把<body>改为
<BODY OnLoad="selectScroller(0);">