2008年3月14日 星期五

變動指標

簡介:指標會隨移動方向改變

步驟一、複製以下程式碼至<head>與</head>之間

<SCRIPT Language="JavaScript">

var x, y, xold, yold, xdiff, ydiff;

var dir = Array();

dir[0] = "n-resize";

dir[1]="ne-resize";

dir[2]="e-resize";

dir[3]="se-resize";

dir[4] = "s-resize";

dir[5]="sw-resize";

dir[6]="w-resize";

dir[7]="nw-resize";

document.onmousemove = FindXY;

function display(direction) {

document.body.style.cursor = dir[direction];

}

function FindXY(loc) {

x = (document.layers) ? loc.pageX : event.clientX;

y = (document.layers) ? loc.pageY : event.clientY;

xdiff = x - xold;

ydiff = y - yold

if ((xdiff < 2) && (ydiff < -2)) display(0);

if ((xdiff < 2) && (ydiff > 2)) display(4);

if ((xdiff > 2) && (ydiff < 2)) display(2);

if ((xdiff < -2) && (ydiff < 2)) display(6);

if ((xdiff > 2) && (ydiff > 2)) display(3);

if ((xdiff > 2) && (ydiff < -2)) display(1);

if ((xdiff < -2) && (ydiff > 2)) display(5);

if ((xdiff < -2) && (ydiff < -2)) display(7);

xold = x;

yold = y;

}

</SCRIPT>

各式指標

將以下程式碼放至連結標籤內即可

朝上 style="cursor:n-resize"


朝下 style="cursor:s-resize"


朝左 style="cursor:e-resize"


朝右 style="cursor:w-resize"


左斜 style="cursor:nw-resize"


右斜 style="cursor:ne-resize"


移動 style="cursor:move"


十字 style="cursor:crosshair"


疑問 style="cursor:help"


等待 style="cursor:wait"


禁止 style="cursor:not-allowed"


手指 style="cursor:hand"


手指&禁止 style="cursor:no-drop"


文字 style="cursor:text"

禁止IE Image Toolbar儲存圖片

支援的瀏覽器:IE6+

簡介:禁止IE Image Toolbar儲存圖片

方法一:

加到<head>與</head>之間
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">

方法二:
修改img標籤
例子:<img src="test.gif" GALLERYIMG="no">

禁止右鍵點選圖片

支援的瀏覽器:FF1+ IE5+
簡介:禁止右鍵點選圖片

加到網頁最後,</body>之前

<script language="JavaScript1.2">



var
clickmessage="Right click disabled on images!"



function
disableclick(e) {

if (document.all) {

if
(event.button==2event.button==3) {

if
(event.srcElement.tagName=="IMG"){

alert(clickmessage);

return
false;

}

}

}

else if (document.layers) {

if
(e.which == 3) {

alert(clickmessage);

return
false;

}

}

else if (document.getElementById){

if
(e.which==3&&e.target.tagName=="IMG"){

alert(clickmessage)

return
false

}

}

}



function
associateimages(){

for(i=0;i<document.images.length;i++)

document.images[i].onmousedown=disableclick;

}



if
(document.all)

document.onmousedown=disableclick

else if
(document.getElementById)

document.onmouseup=disableclick

else if
(document.layers)

associateimages()

</script>

透明圖片

步驟一、複製到網頁中欲呈現特效的位置

<IMG src="圖址" style="filter:Alpha(opacity=50,style=0)">


修改事項:
圖片網址

震動圖片

步驟一、複製程式碼至<head></head>之間

<style>

.shakeimage{

position:relative

}

</style>

<script language="JavaScript1.2">



var rector=3



var stopit=0

var a=1



function init(which){

stopit=0

shake=which

shake.style.left=0

shake.style.top=0

}



function rattleimage(){

if ((!document.all&&!document.getElementById)||stopit==1)

return

if (a==1){

shake.style.top=parseInt(shake.style.top)+rector

}

else if (a==2){

shake.style.left=parseInt(shake.style.left)+rector

}

else if (a==3){

shake.style.top=parseInt(shake.style.top)-rector

}

else{

shake.style.left=parseInt(shake.style.left)-rector

}

if (a<4)

a++

else

a=1

setTimeout("rattleimage()",50)

}



function stoprattle(which){

stopit=1

which.style.left=0

which.style.top=0

}



</script>

 


步驟二、複製到網頁中欲呈現特效的位置
<img src="logo.gif" class="shakeimage" onMouseover="init(this);rattleimage()"
onMouseout="stoprattle(this)">


修改事項:
如果要增加多個圖片只要直接增加步驟二的語法,在修改圖片檔名。
<img src="logo.gif" ...

移動圖片特效

步驟一、複製程式碼至<head></head>之間

<style>

.drag{position:relative;cursor:hand}

</style>


步驟二、複製程式碼至<body>下方

<script language="JavaScript1.2">

<!--

var dragapproved=false

var z,x,y

function move(){

if (event.button==1&&dragapproved){

z.style.pixelLeft=temp1+event.clientX-x

z.style.pixelTop=temp2+event.clientY-y

return false

}

}

function drags(){

if (!document.all)

return

if (event.srcElement.className=="drag"){

dragapproved=true

z=event.srcElement

temp1=z.style.pixelLeft

temp2=z.style.pixelTop

x=event.clientX

y=event.clientY

document.onmousemove=move

}

}

document.onmousedown=drags

document.onmouseup=new Function("dragapproved=false")

//-->

</script>

 


步驟三、複製到網頁中與呈現圖片的位置
<img src="10.gif" class="drag" width="242" height="36">

 

修改事項:
可省略步驟三:當您將圖片放入網頁上後,只要在圖片標籤加入class="drag"就可移動了。

設為首頁的程式碼

支援的瀏覽器:IE 5 +

簡介:按下連結便可設定網頁為首頁

<a href="#"
onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://lamkc.blogspot.com');">Click
here to make Dynamic Drive your default homepage</a>

2008年3月13日 星期四

加到我的最愛

支援的瀏覽器:Firefox 1.x+, IE4+ and Opera7+
簡介:按下連結可將網頁加到我的最愛

步驟1:
放置下列Code到</head>
<script
type="text/javascript">

/*
Modified to support Opera */
function
bookmarksite(title,url){
if (window.sidebar) //
firefox
window.sidebar.addPanel(title, url,
"");
else if(window.opera &&
window.print){ // opera
var elem =
document.createElement('a');
elem.setAttribute('href',url);
elem.setAttribute('title',title);
elem.setAttribute('rel','sidebar');
elem.click();
}

else if(document.all)// ie
window.external.AddFavorite(url,
title);
}
</script>


步驟2:
javascript:bookmarksite('title_of_site', 'url_of_site')

新增a連結標籤,加到href後
例子:<a href="javascript:bookmarksite('Lam KC', 'http://lamkc.blogspot.com')">加此頁到我的最愛</a>

注意事項:若你的網頁的title包括 ',請加上 /
例子:<a href="javascript:bookmarksite('It\'s My Site', 'http://lamkc.blogspot.com')">加此頁到我的最愛</a>

顯示瀏覽者的瀏覽螢幕解析度

瀏覽螢幕解析度
支援的瀏覽器:FF1+ IE5+ Opr7+
簡介:顯示瀏覽者的瀏覽螢幕解析度


<script language="JavaScript1.2">

<!--



var correctwidth=800

var correctheight=600

if (screen.width!=correctwidthscreen.height!=correctheight)

document.write("This webpage is bested viewed with screen resolution "+correctwidth+"*"+correctheight+".
Your current resolution is "+screen.width+"*"+screen.height+". If possible,
please change the resolution!")

//-->

</script>



修改"correctwidth" 及 "correctheight"

背景位置

背景置中
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:center;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


背景右上
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:right top;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


背景右下
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:right bottom;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


背景左上
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:left top;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


背景左下
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:left bottom;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


橫排置中
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-x;

background-position:center;}

-->

</style>


橫排置上
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-x;

background-position:top;}

-->

</style>


橫排置下
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-x;

background-position:bottom;}

-->

</style>


橫排置左
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-y;

background-position:left;}

-->

</style>


橫排置右
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-y;

background-position:right;}

-->

</style>

雪景背景

步驟一、複製程式碼至<body></body>之間

<script language="JavaScript">

<!--

N = 30;

Y = new Array();

X = new Array();

S = new Array();

A = new Array();

B = new Array();

M = new Array();

V = (document.layers)?1:0;

iH=(document.layers)?window.innerHeight:window.document.body.clientHeight;

iW=(document.layers)?window.innerWidth:window.document.body.clientWidth;

for (i=0; i < N; i++){

Y[i]=Math.round(Math.random()*iH);

X[i]=Math.round(Math.random()*iW);

S[i]=Math.round(Math.random()*5+2);

A[i]=0;

B[i]=Math.random()*0.1+0.1;

M[i]=Math.round(Math.random()*1+1);

}

if (V){

for (i = 0; i < N; i++)

{document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFF0'
CLIP='0,0,"+M[i]+","+M[i]+"'></LAYER>")}

}

else{

document.write('<div style="position:absolute;top:0px;left:0px">');

document.write('<div style="position:relative">');

for (i = 0; i < N; i++)

{document.write('<div id="si" style="position:absolute;top:0;left:0;width:'+M[i]+';height:'+M[i]+';background:#fffff0;font-size:'+M[i]+'"></div>')}

document.write('</div></div>');

}

function snow(){

var H=(document.layers)?window.innerHeight:window.document.body.clientHeight;

var W=(document.layers)?window.innerWidth:window.document.body.clientWidth;

var T=(document.layers)?window.pageYOffset:document.body.scrollTop;

var L=(document.layers)?window.pageXOffset:document.body.scrollLeft;

for (i=0; i < N; i++){

sy=S[i]*Math.sin(90*Math.PI/180);

sx=S[i]*Math.cos(A[i]);

Y[i]+=sy;

X[i]+=sx;

if (Y[i] > H){

Y[i]=-10;

X[i]=Math.round(Math.random()*W);

M[i]=Math.round(Math.random()*1+1);

S[i]=Math.round(Math.random()*5+2);

}

if (V){document.layers['sn'+i].left=X[i];document.layers['sn'+i].top=Y[i]+T}

else{si[i].style.pixelLeft=X[i];si[i].style.pixelTop=Y[i]+T}

A[i]+=B[i];

}

setTimeout('snow()',50);

}

//-->

</script>



修改事項:
N = 30; //雪的數目

2008年3月12日 星期三

隨機背景

步驟一、複製以下程式碼至<head>&</head>之中

<script language=javascript>

<!--

var pic=new Array(5)

pic[0]="圖址1"

pic[1]="圖址2"

pic[2]="圖址3"

pic[3]="圖址4"

pic[4]="圖址5"

var newdate=new Date()

var getpic=newdate.getSeconds()%pic.length

document.write('<body background='+pic[getpic]+'>')

//-->

</script>

 

修改事項:

new Array(5)為你總圖片數

pic[0],pic[1],pic[2],pic[3],pic[4]可自行增加或減少。

星空動態背景

步驟一、複製程式碼到<body>之後

<script language="JavaScript">

<!-- Space Trip Script by kurt.grigg@virgin.net

cOlOuRs=new Array("abbbff","ffffee","ffff7a","dffffd","ffaaa0","ffddd0")

S_amount = 30;//number of small stars!!!!!

L_amount = 15;//number of larger stars!!!!

S_Ypos = new Array();

S_Xpos = new Array();

L_Ypos = new Array();

L_Xpos = new Array();

S_speed= new Array();

L_speed= new Array();

if (document.all)

{

for (i = 0; i < S_amount; i++)

{

S_Ypos[i] = Math.round(Math.random()*document.body.offsetHeight);

S_Xpos[i] = Math.round(Math.random()*document.body.offsetWidth);

}

for (i = 0; i < L_amount; i++)

{

L_Ypos[i] = Math.round(Math.random()*document.body.offsetHeight);

L_Xpos[i] = Math.round(Math.random()*document.body.offsetWidth);

}

document.write('<div id="Outer" style="position:absolute;top:0px;left:0px">');


document.write('<div id="Inner" style="position:relative">');

for (i = 0; i < S_amount; i++)

{document.write('<div id="ieS_star" style="position:absolute;top:'+S_Ypos[i]+';left:'+S_Xpos[i]+';width:1px;height:1px;background:#fffff0;font-size:1px"></div>');}


for (i = 0; i < L_amount; i++)

{document.write('<div id="ieL_star" style="position:absolute;top:'+L_Ypos[i]+';left:'+L_Xpos[i]+';width:2px;height:2px;background:#ffffff;font-size:2px"></div>');}


document.write('</div>');

document.write('</div>');

for (i = 0; i < L_amount; i++)

{

for (j = 0; j < cOlOuRs.length; j++)

{var NewColour=Math.round(Math.random()*[j])}

document.all.ieS_star[i].style.background=cOlOuRs[NewColour];

document.all.ieL_star[i].style.background=cOlOuRs[NewColour];

}

for (i=0; i < ieS_star.length; i++){S_speed[i]=Math.random()*3+1}

for (i=0; i < ieL_star.length; i++){L_speed[i]=Math.random()*7+2}

function ES_go()

{

document.all.Outer.style.pixelTop=document.body.scrollTop;

for (i=0; i < ieS_star.length; i++)

{

ieS_star[i].style.pixelLeft-=S_speed[i];

if (ieS_star[i].style.pixelLeft < -10){ieS_star[i].style.pixelLeft=window.document.body.offsetWidth}


}

S_timer=setTimeout('ES_go()',30);

}

function EL_go()

{

for (i=0; i < ieL_star.length; i++)

{

ieL_star[i].style.pixelLeft-=L_speed[i];

if (ieL_star[i].style.pixelLeft < -10){ieL_star[i].style.pixelLeft=window.document.body.offsetWidth}


}

L_timer=setTimeout('EL_go()',10);

}

function IeStart()

{

ES_go();

EL_go();

}

IeStart()

}//End Explorer



else if (document.layers)

{

for (i = 0; i < S_amount; i++)

{

S_Ypos[i] = Math.round(Math.random()*window.innerHeight);

S_Xpos[i] = Math.round(Math.random()*window.innerWidth);

document.write("<LAYER NAME='S_star"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFF0'
CLIP='0,0,1,1'></LAYER>");

document.layers["S_star"+i].top = S_Ypos[i];

document.layers["S_star"+i].left = S_Xpos[i];

}

for (i = 0; i < L_amount; i++)

{

L_Ypos[i] = Math.round(Math.random()*window.innerHeight);

L_Xpos[i] = Math.round(Math.random()*window.innerWidth);

document.write("<LAYER NAME='L_star"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFF0'
CLIP='0,0,2,2'></LAYER>");

document.layers["L_star"+i].top = L_Ypos[i];

document.layers["L_star"+i].left = L_Xpos[i];

for (j = 0; j < cOlOuRs.length; j++)

{

var NewColour=Math.round(Math.random()*[j]);

}

document.layers['S_star'+i].bgColor=cOlOuRs[NewColour];

document.layers['L_star'+i].bgColor=cOlOuRs[NewColour];

}

for (i=0; i < S_amount; i++){S_speed[i]=Math.random()*3+1}

for (i=0; i < L_amount; i++){L_speed[i]=Math.random()*7+2}

function NS_go()

{

for (i=0; i < S_amount; i++)

{

var temp="S_star"+i;//50

document.layers[temp].top=S_Ypos[i]+window.pageYOffset;

document.layers['S_star'+i].left-=S_speed[i];

if (document.layers['S_star'+i].left < -10){document.layers['S_star'+i].left=window.innerWidth}


}

S_timer=setTimeout('NS_go()',30);

}

function NL_go()

{

for (i=0; i < L_amount; i++)

{

var temp="L_star"+i

document.layers[temp].top=L_Ypos[i]+window.pageYOffset;

document.layers['L_star'+i].left-=L_speed[i];

if (document.layers['L_star'+i].left < -10){document.layers['L_star'+i].left=window.innerWidth}


}

L_timer=setTimeout('NL_go()',10);

}

function NsStart()

{

NS_go();

NL_go();

}

NsStart();

}//End Netscape

window.onresize = new Function("window.location.reload()");

//-->

</script>

 

漸暗效果

步驟一、複製程式碼到<head></head>之間

<SCRIPT Language="JavaScript">

<!--

count = 0;

col = "";



function startFade(fadeColor)

{

col = fadeColor;

setTimeout("fade()",200);

}



function fade()

{

if (count<16)

{

c=col.substring(count,count+1);

c+=c+c+c+c+c;

document.bgColor=c;

count++;

setTimeout("fade()",100);

}

}

startFade("fedcba9876543210");

// -->

</SCRIPT>

</script>

 

步驟二、複製程式碼到<body>框框之中

onUnload="startFade('0123456789abcdef')" bgcolor="#000000" text="#FFFFFF"

變換背景色彩

步驟一、複製程式碼至<body></body>之間

<A HREF="#" onMouseOver="bgColor='#B1CBE4'"><font
color="#B1CBE4">■</font></A>

<A HREF="#" onMouseOver="bgColor='#FF9900'"><font color="#FF9900">■</font></A>


<A HREF="#" onMouseOver="bgColor='#000000'"><font color="#000000">■</font></A>


<A HREF="#" onMouseOver="bgColor='#CC3300'"><font color="#CC3300">■</font></A>


<A HREF="#" onMouseOver="bgColor='#CC6699'"><font color="#CC6699">■</font></A>


<A HREF="#" onMouseOver="bgColor='#A9B88D'"><font
color="#A9B88D">■</font></A></p>


步驟二、複製程式碼到<body>框框之中

onUnload="startFade('0123456789abcdef')" bgcolor="#000000" text="#FFFFFF"


修改事項:
<A HREF="#" onMouseOver="bgColor='#B1CBE4'"><font
color="#B1CBE4">■</font></A>

黑白背景

步驟一、複製以下程式碼至<head>&</head>之中
<style type=text/css>

<!--

body{filter:gray;}

-->

</style>


修改事項:

body{filter:gray;} 將灰色(gray) 改為你喜歡的顏色

定時變色

步驟一、複製以下程式碼至<head>&</head>之中

<SCRIPT LANGUAGE="JavaScript">

<!--

setTimeout("document.bgColor='#000000'",1000*1);

setTimeout("document.bgColor='#333333'",1000*2);

setTimeout("document.bgColor='#cc6699'",1000*3);

setTimeout("document.bgColor='#8d8dc7'",1000*4);

setTimeout("document.bgColor='#ffecff'",1000*5);

//-->

</SCRIPT>


修改事項:
修改顏色碼

定時變色

步驟一、複製以下程式碼至<head>&</head>之中

<SCRIPT LANGUAGE="JavaScript">

<!--

setTimeout("document.bgColor='#000000'",1000*1);

setTimeout("document.bgColor='#333333'",1000*2);

setTimeout("document.bgColor='#cc6699'",1000*3);

setTimeout("document.bgColor='#8d8dc7'",1000*4);

setTimeout("document.bgColor='#ffecff'",1000*5);

//-->

</SCRIPT>


修改事項:
修改顏色碼

2008年3月8日 星期六

無聊做的=__=




呵呵,你愛我,還是我愛你?

想線上弄圖可到這裡:
http://www.imagechef.com/

使用.htaccess Ban IP

複製下列碼存為.htaccess,並放置網頁根目錄。

## USER IP BANNING
<limit>
order allow,deny
deny from 42.12.5.34
deny from 193.110.145.185
deny from 212.173.53.
deny from 69.242.
allow from all
</limit>
一般的IP格式為 xxx.xxx.xxx.xxx
  • 42.12.5.34 (Ban一個指定的IP地址)
  • 212.173.53. (Ban所有212.173.53.xxx範圍的IP)
  • 69.242. (Ban所有69.242.xxx.xxx範圍的IP)
  • 81.158.3 (Ban所有81.158.3xx.xxx.xxx範圍的IP)

Sony 50GB 雙層 Blu-ray 盤片出貨

雖然稍微晚了點,但 Sony 總算是把大得驚人的50GB雙層Blu-ray空片給推上市了。不出意料的,要價高達嚇死人的48美元一隻,這個價格不僅比買兩片25GB的Blu-ray 片子要貴上許多,甚至差不多可以買一顆 80G 的硬盤了!

新機体が登場!『機動戦士ガンダムSEED C.E.73 -STARGAZER-』

「機動戦士ガンダムSEED DESTINY 連合vs.Z.A.F.T.II」中加入『機動戦士ガンダムSEED C.E.73 -STARGAZER-』登場的MS主角機(GAT X105E);且前作的一眾機體都會登場XD;M1/暴風/神盾都有呢...

更多詳細資料:http://www.seed-vs.com/secret/index.html

機動戦士ガンダムSEED DESTINY II PLUS PS2版 発売決定!

官方終於正式發佈PS2版的消息,會於本年12月7日發售呀>V<"不過到時我都要努力讀書, 呵...玩GE機會可能細DD喇;而家送上孖機特寫畫面三張。更多資料:http://www.seed-vs.com/


(>>正義+無限正義踩板,畫面只可以用至字黎形容^^)


(>>呢張,天意+傳說一齊放仔仔,呵...好似好勁咁喎=﹏=")


2008年3月7日 星期五

AquadromeXT For Sony Ericsson

AquadromeXT For Sony Ericsson

||進入DA下載頁面||

**適合任何SONY_ERICSSON_176X220解像度_手提電話。
**進入頁面後按下左邊的「download」按鈕便可下載。

補課的一天*

時光飛逝~~一個漫長的復活節過去了...”

今天早上回學校補數學,不知什麼原因總是遲到(- -|||)"
於是我就搭車返學校...但DO一DO,D一聲(八達通餘額不足的警告聲)
不過,好彩我身上都仲有錢呢家野...最好走左一班車之下就上車>>

入到車,見到地鐵常出沒的一男一女攬住(= =")
OH,都見慣啦...不過佢地年紀可有返咁上下...嘔心!!

入到學校"一樓見到MISS FU..(@_@")裝著看不見.走了>>

上到五樓但只有廖廖可數的人...拎埋PAPER就做..做..."

我問左佢地另一條推理題呢..."題目真係出自耶穌的(.___.")

呵呵~IQ/推理題超好玩,係咁要俾TIPS...咔咔"(痛苦的樣子
太有趣了!)

見到笨笨的人...嗯,真的要保養一下..不然會爆更多的粒粒呢!
(讀書論不要太過份>>>沒精神更是問題!)

下午A.MATHS真的好少人呢"D人係太勁或是不想黎或是在其他地
方溫書呢"????

明天就是會考電腦的大日子...祝福各位考生們!>>"~*

星期六睇左<老馮日記>,成部小K落左馬桶...仲可以用得"收得
仲清楚左...咔咔,但係SD SMS會SD錯人就錯得太離譜喇!

手頭上有英皇MOCK_PEPER一大份,有興趣人士可向本人秘書聯絡。
(>>理科只有中英數,商科及文科提供其他科目!)


我終於俾左張玉照XX喇;不過唔該你記得俾你張我呀...
(>>我知你知我講梗咩嫁下[假設你睇梗的話!!])

係時候中文溫習了...目標:坐C望B!!
(人要有高GE目標才行的,所以不要說我大想頭.___.")

MISS呀MISS...A.MATHS我會努力嫁喇;就憑你的一句,我會合格有
餘的!!!


不要以為我上網記事就沒有溫書.___."呵~

不要為一科而影響下一科;不要為一題而影響下一題。

櫻桃小丸子/ちびまる子ちゃん 真人版

日本人氣動畫<櫻桃小丸子>已播放了十五周年之際,日本富士電視台推出真人版小丸子,於本月的十八日正式播出面世,主角仍是以小丸子為首...呵,真人的造型和動畫版幾乎一樣呢。


看了第一集的小丸子,第一個感覺就是好看,小丸子真的好可愛...劇中還有和爸爸出浴,搞笑之餘亦是可愛。是必看的一套作品,不看一定會後悔哦!(感覺動畫中的小丸子沒有真人版的好呢...嘿嘿!)


第一集BT已經釋出,找不到種子而想看的可以聯絡我呢。(只提供BT種子___")

更多的資料或圖片請瀏覽>>>http://www.fujitv.co.jp/maruchan/

站長推介度:
(X10為最高)

U1595P55T4D88832F50DT20060328155428.jpg

28903.jpg

030820060512472180130800167.jpg

030820060526212180130800167.jpg

U1595P55T4D88833F50DT20060328155516.jpg

數碼暴龍新作推出!

20064315424756735.jpg

【作品名稱】Digimon Savers [數碼暴龍拯救者]
【原案 】本鄉昭由
【監督 】伊籐 尚往
【系列構成】山口 亮太
【人物設計】青井 小夜
【播放時日】2006年4月2日(星期日 早上9點)


Digimon Savers故事簡介:
故 事的舞台是不久的未來,存在於網絡世界"數碼世界"的"數碼暴龍"被確認.根據數碼世界和數碼暴龍的研究第一人·大門英(Daimon Suguru)教授的努力,開始瞭解數碼暴龍的生態.不過,也瞭解到了其中存在稀少的邪惡品種的數碼暴龍……為了那種邪惡的數碼暴龍的對策政府設立[數碼 世界特搜部隊·DATS(Digital Accident Tactics Squad)],大門教授的獨生子,Masaru被吸納成為DATS的成員、並於在托馬和淑乃組成三人隊直面品種惡劣的數碼暴龍!



我的感覺(看後感):
久 久未出的數碼暴龍系列經過三年的停產後,終於在本月的二號在日本的富士電視台早上的九點檔期播出最新一套動畫了,DigimonSavers是這次的名 字,從名字直譯就是[數碼暴龍拯救者],亦即是數碼暴龍五了。剛剛看了首三集,第一個感覺就是...何解亞古獸這麼的巨型,嚇了一跳呢!...而且還是覺 得細細的比較好看呢!還有,就是亞古獸的進行形態亦出現變化...上圖大家看看吧,超型的呢!


更多詳細資料請到官方網站>>http://www.toei-anim.co.jp/tv/digimon_s

WIRE ROBO

wrw_title.jpg


■ 遊戲名稱:WIRE ROBO
■ 遊戲類型:射撃
■ 支援系統:Windows98/98SE/Me/2000/XP
■ 官方網站:http://nepiaworld.com/menu/works/nekobo/index.html
■ 遊戲畫面:暫不加入


▼ゲーム特性
本作は、2001年にX68000で発表した独自路線まっしぐらのアクションシューティング『ワイヤーロボ』の待望のWindows移植版です。
もちろん、ただの移植ではありません。新たな稼ぎ要素の追加、ステージ追加によるボリュームアップなど、大幅にリニューアルされています!

さらにアクアプラス社製携帯ゲーム機P/ECEで動作する、『P/ECE版ワイヤーロボ』も同梱しました!

前代未聞の独特の操作性が醸し出す爽快感をお楽しみください。

Sony Ericsson W700i (金色)

No_2309.jpg


推出日期:2006年第二季
制頻:GSM三頻
螢幕:26萬色
相機:200 萬畫素
支援:MP3/AAC
鈴聲:40 和弦
其他:JAVA/藍芽/Memory Stick Pro Duo (4G)

Walkman 系列第八款最新手機 W700i(金色),外
型首度以鈦金色表現,呈現出細緻美感,可儲存
多首音樂檔案;附有一片 256MB Memory Stick
PRO Duo 記憶卡,足以儲 存 6 片 CD 的音樂供
隨時聆聽。此外還可自行選購搭配市面上高達的
4GB 記憶卡,可存入高達 47 片 CD 的容量,內建
200萬畫素相機;但感覺就和W800i一模一樣。

Sony Ericsson W700i 預計在 2006 年第二季推出,以上規格僅供參考。

Yggdra Union / 公主聯盟

遊戲介紹:
Yggdra Union 公主聯盟,這是一款非常優質的戰略遊戲。很久沒有看到製作這麼精美的戰略遊戲。不管是在音樂、畫面、遊戲性上,都有他非常特殊得一面。再加上那非常獨特的 腳色人物以及戰鬥畫面,比起以往的大戰略系列,更是增進他戰鬥時的氣氛。檔案有17MB之大,大家在下載這款遊戲時要比較有耐心喔!強力推薦下載遊玩!

::遊戲下載::

GUNDAM.png
GUNDAM.png

真的這麼重要,不能放低嗎?

出街了,又可以說是沒有出...呵~總之尋日幾
好開心啦...好玩!期待下一次的來臨呀。我會打敗所有人。

今天沒有什麼的特別呢,早上因為某些的事而沒有出席早上
物理的補課,好彩羅SIR沒有鬧我,又沒有問我什麼事,不用我
煩。

食完LUNCH就出發返學校,途中見到佢呀;唔知點解呢......
我不覺地就避開佢,唔係好想俾佢見到我,又好想同佢一齊
行返學校,但明知佢唔鐘意...所以最後都係選擇避開啦...

我件衫...又給人說了;不過都慣左-V-”呵呵~幾靚嫁!

有時有D野真係唔係好明,可以變得這麼的快...雖然有時一
句的對唔住,一個簡單的道歉不可以彌補一切,但是還可以做什
麼呢?自問可以做的也做了...一個機會這麼難的給出來嗎?
也許是我想的太簡單,又或者很多的事我不明白...?

願...冰冷也可變得溫暖。現在真的太辛苦了。

心情指數:4/10

On November 1

On November 1, Hagrid, a 'half-giant',
delivers Harry to his only living relatives,
the cruel and magic-phobic Dursleys,
comprising Uncle Vernon, a bad-tempered uncle,
Aunt Petunia, a woman who appears to absolutely loathe Harry,
and Dudley, their spoiled and overweight son.
They attempt in vain to rid him of his magical powers,
hide his magical heritage,
and severely punish him after any strange occurrences.
However, as his eleventh birthday approaches,
Harry has his first contact with the magical world when he begins
receiving letters from Hogwarts School of Witchcraft and Wizardry,
which are delivered by owls. Unfortunately,
his uncle confiscates the letters before he can read them.
Much to the Dursley's chagrin,
Hogwarts is aware that Harry is not receiving his letter and send
a representative of the school to meet with him and explain his heritage.
At the stroke of midnight on Harry's eleventh birthday,
Rubeus Hagrid, Hogwarts' gamekeeper,
appears and informs Harry that he is a wizard and has been
invited to attend the school.
Each book chronicles one year in Harry's life,
which is mostly spent at Hogwarts.
There he learns to use magic and brew potions.
Harry also learns to overcome many magical, social,
and emotional hurdles as he struggles through his adolescence,
Voldemort's second rise to power,
and the Ministry of Magic's corruption and incompetence.
After facing many obstacles, forging lasting friendships,
and losing countless loved ones,
Harry Potter confronts the Dark Lord for the last time.

HARRY POTTER (4)

Overview

Plot summary
The story opens with the conspicuous celebration of a
normally secretive wizarding world. For many years,
it had been terrorised by the evil wizard, Lord Voldemort.
The previous night, on October 31, Voldemort discovers
the Potter family's hidden refuge, killing Lily and James Potter.
However, when he attempts to murder their toddler
son, Harry, the Avada Kedavra killing curse he casts rebounds
upon him. Voldemort's body is destroyed, but his spirit
survives: he is neither dead nor alive. Meanwhile,
the orphaned Harry is left with a distinctive lightning
bolt-shaped scar on his forehead, the only physical sign
of Voldemort's curse. Harry is the only known survivor of
the killing curse, and Voldemort's mysterious defeat causes
the wizarding community to dub Harry "The Boy Who Lived".

HARRY POTTER (3)

The success of the novels has made Rowling the
highest-earning novelist in history. English language versions
of the books are published by Bloomsbury in the United Kingdom,
Scholastic Press in the United States, Allen & Unwin in Australia
and Raincoast Books in Canada.

Thus far, the first five books have been made into
a series of motion pictures by Warner Bros. The sixth,
Harry Potter and the Half-Blood Prince,
began filming in September 2007,
with a scheduled release of 21 November 2008.

HARRY POTTER (2)

Since the release of the first novel Harry Potter and
the Philosopher's Stone in 1997, which was retitled Harry Potter
and the Sorcerer's Stone in the United States,
the books have gained immense popularity, critical acclaim and
commercial success worldwide. The series has spawned films,
video games and Potter-themed merchandise. As of April 2007,
the first six books in the seven book series have sold more than
400 million copies and have been translated into more
than 64 languages. The seventh and last book in the series,
Harry Potter and the Deathly Hallows, was released
on 21 July 2007. Publishers announced a record-breaking
12 million copies for the first print run in the U.S. alone.

HARRY POTTER

Harry Potter is a series of seven fantasy novels
written by
British author J. K. Rowling.
The books chronicle the adventures of the
eponymous
adolescent wizard
Harry Potter, together with Ron Weasley
and
Hermione Granger, his best friends.
The story is mostly set at
Hogwarts School of Witchcraft
and Wizardry
, an academy for young wizards and witches.
The central
story arc concerns Harry's struggle against
the evil wizard
Lord Voldemort, who killed Harry's
parents in his quest to conquer the
wizarding world.