Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger

2013年1月21日 星期一

關於系統分析的好文章



漫談系統分析師的工作技能

http://www.gss.com.tw/index.php/eis/818

系統分析師必須思考的8個問題
http://www.ithome.com.tw/itadm/article.php?c=56293
http://sunchaoyi.xxking.com/new_page_39.htm

關於網站防駭的文章

關於網站防駭的文章
值得收藏
http://www.iiiedu.org.tw/taipei/student/paper/tihs9310_doc.pdf

塵封

好久沒有寫寫東西了
終於找到這個塵封已久的部落格...
像是喚回一些塵封已久的回憶

2012年1月26日 星期四

How to add Flash SWF as background of a HTML page?

How to add Flash SWF as background of a HTML page?

http://www.aleosoft.com/flashtutorial_flashbackground.html

This tutorial will guide you how to add a Flash SWF file as background of a HTML page.
To embed Flash SWF as background of a web page, there are basically two steps:
Make the Flash movie transparent.
Use div and properties z-index, position:absolute and position:relative to make the Flash movie displaying under other contents.
Step 1: Make the Flash movie transparent.
Look for the code that embeds the Flash Movie. It should look similar to this:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="480" height="125">
<param name="movie" value="flashmovie.swf" />
<param name="quality" value="high" />
<embed src="flashmovie.swf" quality="high" type="application/x-shockwave-flash" width="480" height="125" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
To make the Flash movie background transparent, you need to add the WMODE parameters to the HTML code.
Add the following parameter to the OBJECT tag:
<param name="wmode" value="transparent">
Add the following parameter to the EMBED tag:
wmode="transparent"
After edit, the HTML code should look similar to below. The new changes are shown in red.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="480" height="125">
<param name="movie" value="flashmovie.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="flashmovie.swf" quality="high" type="application/x-shockwave-flash" width="480" height="125" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
Step 2: Use div and properties z-index, position:absolute and position:relative to make the Flash movie displaying under other contents.
To make the Flash movie as background, you need to use div layers. A div layer is like a window inside a window, which lets you define an area inside your HTML page.
<div style="width:480px;height:125px;position:relative;">
<div style="position:absolute; z-index:1;">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="480" height="125">
<param name="movie" value="flashmovie.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="flashmovie.swf" quality="high" type="application/x-shockwave-flash" width="480" height="125" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div>
<div style="position:relative; z-index:2;">
These are the HTML content.
</div>
</div>
The z-index is the key property. The smaller the value, the div layer will be lower.
Below is an example:

什麼是LTE

http://www.eettaiwan.com/SEARCH/ART/LTE.HTM

什麼是LTE?
LTE是長期演進技術 (Long Term Evolution)的簡稱,為是目前在市場上備受矚目的新一代行動無線寬頻技術,它可以讓服務供應商透過較為經濟的方式提供無線寬頻服務,並超越現今3G無線網路的效能、帶來更優異的表現。LTE已正式被第三代行動通訊組織 (Third Generation Partnership Project,簡稱3GPP) 列為全新的無線標準技術。LTE除了能夠針對無線寬頻數據設計出最佳化的性能,它另一項特色是能與GSM服務供應商的網路相容,無論這些服務供應商是否已經部署UMTS技術,都可進行添增LTE的營運規劃。

2012年1月23日 星期一

App取代收銀機!行動付費時代來臨

App取代收銀機!行動付費時代來臨
http://www.cw.com.tw/article/article.action?id=5013122&page=1