程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> 基於Java回想之I/O的應用詳解

基於Java回想之I/O的應用詳解

編輯:關於JAVA

基於Java回想之I/O的應用詳解。本站提示廣大學習愛好者:(基於Java回想之I/O的應用詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是基於Java回想之I/O的應用詳解正文


該標簽不是HTML3.2的一部門,而且只支撐MSIE3今後內核,所以假如你應用非IE內核閱讀器(如:Netscape)能夠沒法看到上面一些很成心思的後果
該標簽是個容器標簽

Marquee 通知布告轉動代碼

最簡略的網站通知布告轉動代碼 ,基於Marquee走馬燈,豎直向上轉動,Table表格情勢,不懂CSS也能用。




<script language="JavaScript">ffcod = delpost.runcode29 .value; ffcod = ffcod.replace(/
/g,''); delpost.runcode29 .value = ffcod;</script> 提醒:您可以先修正部門代碼再運轉

語法:

<marquee></marquee>

以下是一個最簡略的例子:

代碼以下:


<marquee><font size=+3 color=red>Hello, World</font></marquee>

上面這兩個事宜常常用到:

onMouseOut="this.start()" :用來設置鼠標移出該區域時持續轉動
onMouseOver="this.stop()":用來設置鼠標移入該區域時停滯轉動

代碼以下:


<marquee onMouseOut="this.start()" onMouseOver="this.stop()">onMouseOut="this.start()" :用來設置鼠標移出該區域時持續轉動 onMouseOver="this.stop()":用來設置鼠標移入該區域時停滯轉動</marquee>

這是一個完全的例子:

代碼以下:


<marquee id="affiche" align="left" behavior="scroll" bgcolor="#FF0000" direction="up" height="300" width="200" hspace="50" vspace="20" loop="-1" scrollamount="10" scrolldelay="100" onMouseOut="this.start()" onMouseOver="this.stop()">
這是一個完全的例子
</marquee>

該標簽支撐的屬性多達11個:

align

設定<marquee>標簽內容的對齊方法
absbottom:相對底部對齊(與g、p等字母的最下端對齊)
absmiddle:相對中心對齊
baseline:底線對齊
bottom:底部對齊(默許)
left:左對齊
middle:中央對齊
right:右對齊
texttop:頂線對齊
top:頂部對齊

代碼以下:


<marquee align="absbottom">align="absbottom":相對底部對齊(與g、p等字母的最下端對齊)。 </marquee>
<marquee align="absmiddle">align="absmiddle": 相對中心對齊。 </marquee>
<marquee align="baseline">align="baseline": 底線對齊。 </marquee>
<marquee align="bottom">align="bottom": 底部對齊(默許)。 </marquee>
<marquee align="left">align="left": 左對齊。 </marquee>
<marquee align="middle">align="middle": 中央對齊。 </marquee>
<marquee align="right">align="right": 右對齊。 </marquee>
<marquee align="texttop">align="texttop": 頂線對齊。 </marquee>
<marquee align="top">align="top": 頂部對齊。 </marquee>

behavior

設定轉動的方法:

alternate: 表現在兩頭之間往返轉動。
scroll: 表現由一端轉動到另外一端,會反復。
slide: 表現由一端轉動到另外一端,不會反復。

代碼以下:


<marquee behavior="alternate">alternate:表現在兩頭之間往返轉動。 </marquee>
<marquee behavior="scroll">scroll:表現由一端轉動到另外一端,會反復。</marquee>
<marquee behavior="slide">slide: 表現由一端轉動到另外一端,不會反復。</marquee>

bgcolor

設定運動字幕的配景色彩,配景色彩可用RGB、16進制值的格局或色彩稱號來設定。

代碼以下:


<marquee bgcolor="#006699">設定運動字幕的配景色彩 bgcolor="#006699"</marquee>
<marquee bgcolor="RGB(10%,50%,100%,)">設定運動字幕的配景色彩 bgcolor="rgb(10%,50%,100%,)"</marquee>
<marquee bgcolor="red">設定運動字幕的配景色彩 bgcolor="red"</marquee>

direction

設定運動字幕的轉動偏向

代碼以下:


<marquee direction="down">設定運動字幕的轉動偏向direction="down":向下</marquee>
<marquee direction="left">設定運動字幕的轉動偏向direction="left":向左</marquee>
<marquee direction="right">設定運動字幕的轉動偏向direction="right":向右</marquee>
<marquee direction="up">設定運動字幕的轉動偏向direction="up":向上</marquee>

height

設定運動字幕的高度

代碼以下:


<marquee height="500" direction="down" bgcolor="#CCCCCC">設定運動字幕的高度height="500"</marquee>

width

設定運動字幕的寬度

代碼以下:


<marquee width="500" bgcolor="#CCCCCC">設定運動字幕的寬度width="500"</marquee>

hspace

設定運動字幕裡地點的地位間隔父容器程度邊框的間隔

This controls the horizontal(程度)space around the display box.

代碼以下:


<table width="500" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><marquee hspace="100" bgcolor="#CCCCCC">hspace="100"</marquee></td>
</tr>
</table>

vspace

設定運動字幕裡地點的地位間隔父容器垂直邊框的間隔

This controls the vertical(垂直) space around the display box.

代碼以下:


<marquee vspace="100" bgcolor="#CCCCCC">hspace="100"</marquee>

loop

設定轉動的次數,當loop=-1表現一向轉動下去,默許為-1
代碼以下:


<marquee loop="-1" bgcolor="#CCCCCC">我會一直地走。</marquee>
<p>&nbsp;</p>
<marquee loop="2" bgcolor="#CCCCCC">我只走兩次哦</marquee>

scrollamount

設定運動字幕的轉動速度,單元pixels

代碼以下:


<marquee scrollamount="10" >scrollamount="10" </marquee>
<marquee scrollamount="20" >scrollamount="20" </marquee>
<marquee scrollamount="30" >scrollamount="30" </marquee>

scrolldelay

設定運動字幕轉動兩次之間的延遲時光,單元millisecond(毫秒)
值年夜了會有一步一停留的後果

代碼以下:


<marquee scrolldelay="10" >scrolldelay="10" </marquee>
<marquee scrolldelay="100" > scrolldelay="100"</marquee>
<marquee scrolldelay="1000">scrolldelay="1000" </marquee>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved