|
@@ -15,7 +15,7 @@ $(document).ready(function() {
|
|
|
$('.title p').html(title)
|
|
|
console.log(boardUrl)
|
|
|
console.log(desktopUrl)
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -29,9 +29,9 @@ $(document).ready(function() {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -43,7 +43,9 @@ $(document).ready(function() {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
let bigVideo = new FlvJsPlayer({
|
|
|
"id": "bigVideo",
|
|
|
"url": boardUrl,
|
|
@@ -72,32 +74,18 @@ $(document).ready(function() {
|
|
|
"keyShortcut": "off",
|
|
|
"cssFullscreen": true
|
|
|
});
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+ bigVideo.on('requestFullscreen',function(){
|
|
|
+ console.log('1全屏')
|
|
|
+ bigVideo.volume = 1;
|
|
|
+ smallVideo.volume = 0;
|
|
|
+ console.log(bigVideo.volume);
|
|
|
+ })
|
|
|
+ smallVideo.on('requestFullscreen',function(){
|
|
|
+ console.log('2全屏')
|
|
|
+ bigVideo.volume = 0;
|
|
|
+ smallVideo.volume = 1;
|
|
|
+ console.log(smallVideo.volume);
|
|
|
+ })
|
|
|
|
|
|
function shareJoin () {
|
|
|
setTimeout(function () {
|