Greasy Fork

Greasy Fork is available in English.

Bandcamp Volume Bar

adds a volume bar to Bandcamp

< 脚本Bandcamp Volume Bar的反馈

评价:差评 - 脚本失效或无法使用

§
发表于:2016-11-10

doesn't work, fix included

The four lines in the code:
$("#audioSource").volume

should be instead:
$("#audioSource")[0].volume

§
发表于:2016-11-10

additionally, the element isn't ready until the document is loaded, so the initial volume setting will generate an error. So change the first volume setting:

//Sexy Script!
$("#audioSource").volume = percentage/100;

to:
//Sexy Script!
$( document ).ready(function() {
$("#audioSource")[0].volume = percentage/100;
});

发表回复

登录以发表回复。