2011-08-25 68 views

回答

1

「我已經解決了通過編輯文件這個問題」,「在‘私有函數firstClick()DisplayView.as’,只需添加一個簡單的」 return;「作爲第一個statemenet。這樣一來,我完全被忽略點擊顯示區域,以便Flash可以根據需要處理點擊(例如,在Symbian手機中,點擊視頻可以讓播放器全屏顯示,這是不可能的)。「

被盜從Disable play/pause on click

1

我已經在jwplayer版本7中找到了這個解決方案。我想它也可以用於以前的玩家。 首先,股利您將玩家必須具備以下腳本: 我寫的jQuery中:

$('.divPlayer').setup({...});// you setup the player. 
$('.divPlayer').on('click', function (e) { 
    e.preventDefault(); 
    e.stopPropagation(); // stop propagating anything... 
}); 

然後,你需要在divPlayer添加CSS規則:

&::before{ 
    content:''; 
    position:absolute; 
    width:100%; height:100%; 
    z-index:1; 
} 

最後你需要的控制Z指數高於::之前

.jw-controls { 
    z-index:2; 
} 

希望有所幫助。

+0

同樣在7.11中,我不得不更新一個css,以使光標指針在按鈕圖標上工作: .jw-display-icon-container .jw-icon {pointer-events:auto!important; } 而!重要是必需的,因爲內聯規則覆蓋了這個。 –

相關問題