2
我正在製作angular-js和cordova的移動項目。我想添加一個功能,我想要顯示視頻,它應該旋轉自己,當我旋轉設備風景或肖像,但我有一個限制,在應用程序打開我開始使用lockOrientation(肖像),所以我不想旋轉任何頁面到風景,我只想旋轉視頻不屏幕。我試圖檢測旋轉與視頻定位javascript
window.addEventListener("orientationchange", function() {
alert("the orientation of the device is now " + screen.orientation.angle);
});
和在CSS我可以旋轉視頻下面的代碼。
transform:rotate(90deg);
我的問題是如何檢測設備的方向,而使用lockOrientation?可能嗎?因爲我無法解鎖方向。我是一名學生,我對這個環境很陌生。