📄 mulu.htm
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0040)http://king.online.ha.cn/java/jc/Jyu.htm -->
<HTML>
<HEAD>
<TITLE>易都--Java教程</TITLE>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<META content="MSHTML 5.00.2614.3500" name=GENERATOR>
<SCRIPT language=JavaScript>
<!-- Hide the script from old browsers --
// Michael P. Scholtis (mpscho@planetx.bloomu.edu)
// All rights reserved. January 15, 1996
// You may use this JavaScript example as you see fit, as long as the
// information within this comment above is included in your script.
function MakeArray(n){
this.length=n;
for(var i=1; i<=n; i++) this[i]=i-1;
return this
}
hex=new MakeArray(16);
hex[11]="A"; hex[12]="B"; hex[13]="C"; hex[14]="D"; hex[15]="E"; hex[16]="F";
function ToHex(x){ // Changes a int to hex (in the range 0 to 255)
var high=x/16;
var s=high+""; //1
s=s.substring(0,2); //2 the combination of these are the same as the trunc function
high=parseInt(s,10); //3
var left=hex[high+1]; // left part of the hex-value
var low=x-high*16; // calculate the rest of the values
s=low+""; //1
s=s.substring(0,2); //2 the combination of these are the same as the trunc function
low=parseInt(s,10); //3
var right=hex[low+1]; // right part of the hex-value
var string=left+""+right; // add the high and low together
return string;
}
function rainbow(text){
text=text.substring(3,text.length-4); // gets rid of the HTML-comment-tags
color_d1=255; // any value in 'begin' 0 to 255
mul=color_d1/text.length;
for(i=0;i<text.length;i++){
color_d1=255*Math.sin(i/(text.length/3)); // some other things you can try>> "=255-mul*i" to fade out, "=mul*i" to fade in, or try "255癕ath.sin(i/(text.length/3))"
color_h1=ToHex(color_d1);
color_d2=mul*i;
color_h2=ToHex(color_d2);
document.write("<FONT COLOR='#FF"+color_h1+color_h2+"'>"+text.substring(i,i+1)+'</FONT>');
}
}
// --End Hiding Here -->
</SCRIPT>
<SCRIPT LANUGAGE="JavaScript">
<!--
function pop(pageurl) {
var
popwin=window.open(pageurl,"popWin","scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,width=700,height=450");
return false;
}
//-->
</SCRIPT>
<STYLE type=text/css></STYLE>
<SCRIPT language=LiveScript>
function WinOpen() {
msg=open("","DisplayWindow","toolbar=no,directories=no,menubar=no");
msg.document.write("");
msg.document.write("<CENTER><H1>酷毙了</H1><h2>这 是<B>JavaScript</B>所开的视窗!</h2></CENTER>");
}
</SCRIPT>
<link rel="stylesheet" href="mulu.css">
</HEAD>
<BODY background=bk.jpeg bgColor=#ffffff leftMargin=0 text=#000000 topMargin=0 marginwidth="0" marginheight="0" tracingopacity="35" tracingsrc="file:///D|/tiu.jpg">
<p> </p>
<h3>Java教程目录</h3>
<p><a href="jv0401.htm" target="display">第一页</a></p>
<p>4.1 <a href="jv0401.htm#41" target="display">图形与文本<br>
</a>4.1.1 <a href="jv0401.htm#411" target="display">图形的绘制</a><br>
4.1.2 <a href="jv0401.htm#412" target="display">文本与字体</a><br>
4.1.3 <a href="jv0401.htm#413" target="display">颜色的设置</a> </p>
<p><a href="jv0402.htm" target="display">第二页</a></p>
<p> 4.2 <a href="jv0402.htm#42" target="display">图像与声音</a><br>
4.2.1 <a href="jv0402.htm#421" target="display">图像文件的显示</a><br>
4.2.2 <a href="jv0402.htm#422" target="display">声音文件的播放</a></p>
<p><a href="jv0403.htm" target="display">第三页</a></p>
<p>4.3 <a href="jv0403.htm#43" target="display">动画制作</a></p>
<p>4.3.1 <a href="jv0403.htm#431" target="display">一个简单实例<br>
</a>4.3.2 <a href="jv0403.htm#432" target="display">引入线程机制</a><br>
4.3.3 <a href="jv0403.htm#433" target="display">初识闪烁问题</a><br>
4.3.4 <a href="jv0403.htm#434" target="display">放映图像</a><br>
4.3.5 <a href="jv0403.htm#435" target="display">使用媒体跟踪器</a><br>
4.3.6 <a href="jv0403.htm#436" target="display">移动型动画</a><br>
4.3.7 <a href="jv0403.htm#437" target="display">双缓冲技术</a></p>
<p><a href="jv0501.htm" target="display">第四页</a></p>
<p>5.1 <a href="jv0501.htm#51" target="display">接收鼠标、键盘的输入</a><br>
5.1.1 <a href="jv0501.htm#511" target="display">鼠标的按键</a><br>
5.1.2 <a href="jv0501.htm#512" target="display">鼠标的移动</a><br>
5.1.3 <a href="jv0501.htm#513" target="display">键盘的输入</a></p>
<p><a href="jv0502.htm" target="display">第五页</a></p>
<p>5.2 <a href="jv0502.htm#52" target="display">用户界面设计</a><br>
5.2.1 <a href="jv0502.htm#521" target="display">抽象窗口工具箱(AWT)概述</a><br>
5.2.2 <a href="jv0502.htm#522" target="display">UI基本元素</a><br>
5.2.3 <a href="jv0502.htm#523" target="display">版面设置</a><br>
5.2.4 <a href="jv0502.htm#524" target="display">事件的处理</a><br>
5.2.5 <a href="jv0502.htm#525" target="display">窗口构造构件</a></p>
<p><a href="jv0503.htm" target="display">第六页</a></p>
<p>5.3 <a href="jv0503.htm#53" target="display">网络编程</a><br>
5.3.1 <a href="jv0503.htm#531" target="display">网络资源的使用</a><br>
5.3.2 <a href="jv0503.htm#532" target="display">Socket编程</a><br>
5.3.3 <a href="jv0503.htm#533" target="display">数据报</a></p>
<p> </p>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -