顯示具有 javascript 標籤的文章。 顯示所有文章
顯示具有 javascript 標籤的文章。 顯示所有文章

11月 02, 2014

製作線上教學影片

製作線上教學影片的工具:
  • 影片錄製:Camtasia Studio
  • 網頁播放:Shadowbox.js
錄製教學影片使用「Camtasia Studio 8」軟體,官方網站可下載試用版,全功能使用30天,影片輸出不會亂加浮水印,這點還不錯。之後再轉成 flv 格式,以便放在網路上播放。

 Shadowbox.js 的介紹:
Shadowbox is a web-based media viewer application that
supports all of the web's most popular media publishing formats
 基本上就是光箱特效,但是可以內嵌影片、圖片作為來源。
<head>
 <link rel="stylesheet" type="text/css" href="shadowbox.css">
 <script type="text/javascript" src="shadowbox.js"></script>
 <script type="text/javascript">
  Shadowbox.init();
 </script>
</head>
<body>
 <a href="video.flv" rel="shadowbox;height=720;width=960">
   online video  
 </a> 
</body>

8月 12, 2012

JavaScript & jQuery:The Missing Manual 國際中文版

《JavaScript & jQuery:The Missing Manual 國際中文版》
ISBN:9862765135
書中範例:官方網頁載點1載點2

7月 08, 2012

O’Reilly 出版的系列叢書 The Missing Manual

The Missing Manual 系列中跟「網頁設計」有關的清單:

(1) PHP & MySQL:The Missing Manual 國際中文版
(2) JavaScript & jQuery: The Missing Manual 國際中文版 第二版
(3) CSS: The Missing Manual, 2nd Edition

翻了一下內容,似乎比較像是入門書。

6月 29, 2012

王者歸來:征服JavaScript (書中程式碼)

王者歸來:征服JavaScript (範例: 載點1載點2)

ISBN:9789866007224

6月 19, 2011

JavaScript 例外處理

try
{
//Run some code here
}
catch(err)
{
//Handle errors here
}

1月 08, 2011

Rhino shell - JavaScript shell

https://developer.mozilla.org/en/Rhino_Shell
The JavaScript shell provides a simple way to run scripts in batch mode or an interactive environment for exploratory programming.

解開壓縮檔,執行 " java -jar js.jar " 就會出現提示符號
js> print('hi')
hi
js> 6*7
42