2013年12月24日 星期二

$('#accordionDiv').animate({scrollTop: 35*(_index-1)},360);

2013年11月13日 星期三

FLVPlayback.playheadUpdateInterval 屬性


如果FLVPlayback在Android裝置上播放操控不正常,例如暫停與播放、拖曳播放頭,可以考慮修改以下playheadUpdateInterval 屬性為83毫秒。有機會解決困擾。

playheadUpdateInterval

屬性
playheadUpdateInterval:Number
語言版本: ActionScript 3.0
產品版本: Flash CS3
執行階段版本: Flash Player 9.0.28.0, AIR 1.0

數字,表示每個 playheadUpdate 事件之間的時間長度,以毫秒為單位。 在 FLV 檔播放同時設定這個屬性,將會重新啟動計時器。
由於 ActionScript 提示點始於播放磁頭更新,因此,降低 playheadUpdateInterval 屬性的值,可能會增加 ActionScript 提示點的精確度。
播放磁頭更新間隔是藉由呼叫全域 setInterval() 方法所設定,所以無論設定了何種間隔,其觸發更新的次數不會比 SWF 檔影格速率多。 以每秒 12 個影格的預設影格速率為例,您能夠得到的最低有效間隔大約是 83 毫秒,或是除以 12 的 1 秒鐘 (1000 毫秒)。

預設值為 250。

playheadUpdateInterval

屬性 
playheadUpdateInterval:Number
語言版本: ActionScript 3.0
產品版本: Flash CS3
執行階段版本: Flash Player 9.0.28.0, AIR 1.0


數字,表示每個 playheadUpdate 事件之間的時間長度,以毫秒為單位。 在 FLV 檔播放同時設定這個屬性,將會重新啟動計時器。
由於 ActionScript 提示點始於播放磁頭更新,因此,降低 playheadUpdateInterval 屬性的值,可能會增加 ActionScript 提示點的精確度。
播放磁頭更新間隔是藉由呼叫全域 setInterval() 方法所設定,所以無論設定了何種間隔,其觸發更新的次數不會比 SWF 檔影格速率多。 以每秒 12 個影格的預設影格速率為例,您能夠得到的最低有效間隔大約是 83 毫秒,或是除以 12 的 1 秒鐘 (1000 毫秒)。

預設值為 250。

2013年10月15日 星期二

※Js關閉瀏覽器視窗

※Js關閉瀏覽器視窗 - IE、Chrome、Safari、Firefox




※Firefox必須將偏好設定 dom.allow_scripts_to_close_windows設定為true,才能以Js關閉視窗。


2013年3月27日 星期三

Captivate 6 所匯出HTML5互動檔對瀏覽器的支援度



2013年3月21日 星期四

在Chrome中 使 vertical-align:top 有作用


Two methods for vertical centering in CSS

< div id="outer">
    < div id="inner">Element to be aligned< /div>
< /div>

#outer {
    display: table;
    width: 100%;
    height: 100%; /* Height can be anything */
}
#inner {
    display: table-cell;
    vertical-align: top;
}

2013年2月21日 星期四

jQuery

< script type="text/javascript" src="http://zh.forvo.com/_ext/ext-prons.js?id=57468">< /script>

2013年2月1日 星期五

當Win8 RT IE10遇到Flash內容,HTML Page需要這行,來啟動桌面版(傳統版) IE 及其Flash Player plugin播放swf

當Win8 RT IE10遇到Flash內容,HTML Page需要這行,來啟動桌面版(傳統版) IE 及其Flash Player plugin播放swf。

< meta http-equiv="X-UA-Compatible" content="requiresActiveX=true" >


http://msdn.microsoft.com/en-us/library/ie/
Developer guidance for websites with content for Adobe Flash Player in Windows 8 (Internet Explorer)前往

2013年1月24日 星期四

jQuery.browser() removed


jQuery.browser() removed

 (jQuery Core 1.9 Upgrade Guide)


http://jquery.com/upgrade-guide/1.9/#jquery-browser-removed





2013年1月23日 星期三

[CSS] Cross Browser Opacity

CSS → Cross Browser Opacity

例:透明度0: ↓↓↓

.opacityClass {


  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

  /* IE 5-7 */
  filter: alpha(opacity=0);

  /* Netscape */
  -moz-opacity: 0.0;

  /* Safari 1.x */
  -khtml-opacity: 0.0;

  /* Good browsers */
  opacity: 0.0;

}