This commit is contained in:
BOYA,CHIU 2021-08-11 16:49:16 +08:00
parent bea9c1020c
commit 1056f4d7b8
1 changed files with 36 additions and 0 deletions

View File

@ -230,6 +230,42 @@
autoBlur: false,
smoothPlayBar: true,
keyEnabled: true,
keyBindings: {
play: {
key: 80, // p
fn: function(f) {
if(f.status.paused) {
f.play();
} else {
f.pause();
}
}
},
muted: {
key: 77, // m
fn: function(f) {
f._muted(!f.options.muted);
}
},
volumeUp: {
key: 190, // .
fn: function(f) {
f.volume(f.options.volume + 0.1);
}
},
volumeDown: {
key: 188, // ,
fn: function(f) {
f.volume(f.options.volume - 0.1);
}
},
loop: {
key: 76, // l
fn: function(f) {
f._loop(!f.options.loop);
}
}
}
wmode: "window",
solution: "html, flash",
size: {