2008年1月7日 星期一

LAB Google Group


我自己的google group http://groups.google.com/group/gogo-power-ranger

LAB Packet Sniffer

1.http://www.wireshark.org/download.html 去此地下載安裝檔

2.開啟後-->Capture-->interface(選要用來讀取的網卡)-->Start

3.開始進行抓封包動作

4.Capture-->Stop

5.Ctrl+F-->String-->輸入你的搜尋字串作為filter

在這裡我用Blogger來找...找到有人在自己的bolg上所做的動作...


LAB SiteMeter

在BLOG中加入一段HTML後,會在BLOG上看到sitemeter的圖示



之後只要有人瀏覽我的BLOG就會看到有記錄了...目前有兩個

2007年12月31日 星期一

Lab Google Presentation

Lab Drag-and-Drop by AJAX

1. Go to Laszlo and enter (Laszlo in 10 minutes).
2. Study and play around the "drag-and-drop" example.
3. Use this method to control movie playing as in the previous lab.
4. If you drag and drop the photo to the "play" area, the movie plays.
5. If you drap and drop the photo to the "pause" area, the movie pauses.


2007年12月30日 星期日

期末報告

在這個報告中, 我挑選了Define Method來作為我這次的範例. 我會挑選他的原因來自於, 每當我瀏覽網頁時, 滑鼠只一劃過某些廣告還是圖片時, 常常會遇到有放大的效果, 總會吸引我的注意力去看他的內容, 而我想這種功能的廣告效果很強大而且在靜態時又不會造成空間浪費, 如在像奇摩. igoogle這些首頁的版面中, 常常是滿滿的圖片文字廣告, 如果有這功能, 會使你的廣告突出, 十分有效果.

1.效果:
a.當滑鼠不在圖片上時...

b.當滑鼠在第一個方框中時...

由方框的放大縮小, 造成有種類似漣漪, 或是風吹過旗面的效果...具美觀且有廣告效力

1.CODE:

[canvas]
[simplelayout axis="y" spacing="10"/]
[class name="box" bgcolor="blue"
height="100" width="100" /]
/*定義box, 為底部方框之大小及顏色, 還有各方框間隔距離位置,*/
[class name="borderedbox" extends="box"
width="${size}" height="${size}"
onmouseover="this.changeSize(50)"
onmouseout="this.changeSize(-50)"]
/*定義borderedbox, 此部分最重要為 onmouseover="this.changeSize(50)"
onmouseout="this.changeSize(-50)" 這兩句...這為定義當滑鼠移進及移出時, 所要放大的大小
[attribute name="size" value="100"/]
[attribute name="bordersize" value="2"/]
[view bgcolor="yellow"
x="${parent.bordersize}"
y="${parent.bordersize}"
width="${parent.width - parent.bordersize*2}"
height="${parent.height - parent.bordersize*2}"/]
/*這裡也是定義borderedbox變數的地方, 有color及大小, 比較特殊為:內框之大小是視外框而定的, 即為和外框成一定比例, width="${parent.width - parent.bordersize*2}"
height="${parent.height - parent.bordersize*2}"我們可以在這裡改變比例*/
[method name="changeSize" args="pixels"]
this.animate('size', pixels, 500, true);
/*此地方為定義changeSize, 即為我們所希望的變動的幅度, 為視pixel而定, 類似圖片畫素一般, 如果pixel越大則其變動的幅度會越接近自然的變動, 越小則會像一格一格投影片的效果, 端看我們想要的效果可以改變其pixel*/
[/method]
[/class]

[borderedbox/]
[borderedbox bordersize="6"/]
[borderedbox bordersize="9"/]
/*這裡為定義物件borderedbox 的多寡及內外框一開始距離, 我們如果想要增加框框可以在此地定義*/
[/canvas]

[!-- Copyright 2001-2007 Laszlo Systems, Inc. All Rights Reserved. --]



心得:
這學期跟著老師一起上這堂課, 雖然我認為和其他的電子學...等課來說這門課很輕鬆, 但是我覺得我學到很多很實際的東西, 也在這裡面學到一些網路上的架構概念, 而我會在這裡想找這個程式來做範例, 是因為它讓我看到了網路行銷的功能, 我想網路之所以發達, 應該不只是因為他好玩吧!
而是他的行銷功能強大且不需要花費很多錢...因此我想這會是現在也是未來創業的趨勢, 如何在網路廣告上引人注目

2007年12月17日 星期一