jQuery 滑块不会在无铬 YouTube 播放器上设置音量
我有一个无铬 YouTube 播放器,我想使用 jQuery 滑块进行控制,但是当我尝试滑动滑块时,它不会设置播放器的音量。在我将 setVolulme(ui.value);
添加到代码中后,它也拒绝移动。关于如何进行这项工作或有什么问题有什么想法吗?
$(function()
$("#volume").slider({
orientation: "horizontal",
range: "min",
min: 0,
max: 100,
value: 75,
slide: function(event, ui) {
setVolulme(ui.value);
$("#amount").val(ui.value);
}
});
$("#amount").val($("#volume").slider("value"));
});
function setVolulme(newVolume) {
if (ytplayer) {
ytplayer.setVolulme(newVolume);
}
}
I have a chromeless YouTube player that I want to control using a jQuery slider but when I try to slide the slider it doesn't set volume for the player. It also refuses to move after I add setVolulme(ui.value);
to the code. Any ideas on how to make this work or what is wrong with it?
$(function()
$("#volume").slider({
orientation: "horizontal",
range: "min",
min: 0,
max: 100,
value: 75,
slide: function(event, ui) {
setVolulme(ui.value);
$("#amount").val(ui.value);
}
});
$("#amount").val($("#volume").slider("value"));
});
function setVolulme(newVolume) {
if (ytplayer) {
ytplayer.setVolulme(newVolume);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
Try: