4

如何检测 jplayer 是否处于全屏模式?

4

3 回答 3

6

jp-video-fulljplayer在全屏时向 div添加一个类。

您可以将该选择器用于您想要实现的任何目标。

if ($("#jp_container_1").hasClass("jp-video-full")) {
    //do something
} else {
   //do something else
}
于 2012-04-05T18:09:29.637 回答
3

好的,这就是我必须去的:

  $("a.jp-full-screen").click(function(){

  if($(this).attr("title")=="full screen"){
         $(".hover, ul#navigation").hide()
  }
  })


  $("a.jp-restore-screen").click(function(){
     if($(this).attr("title")=="restore screen"){
         $(".hover, ul#navigation").show()
  }
 })
于 2012-04-05T21:57:25.690 回答
0
if ($("#jp_container_1").status.cssClass == 'jp-video-full') {} else {}
于 2014-06-27T13:00:56.603 回答