我一直在尝试使用Soundcloud 博客页面上给出的示例,以便将音量设置得更低。
我只更改了iframe
大小和src=
播放列表,并将音量设置为 10,这样我就可以注意到它是否有效。到目前为止,我观察到没有任何变化,音量仍为 100%。
我已经尝试过,无论是否将以下内容放在我的模板头部。这似乎无关紧要。
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
这是我从 Soundcloud 示例中调整的代码:
<iframe id="sc-widget" width="350" height="332" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Fplaylists%2F1417174&auto_play=true&show_artwork=false&color=37415f"></iframe>
<script src="http://w.soundcloud.com/player/api.js" type="text/javascript"></script>
<script type="text/javascript">
(function(){
var widgetIframe = document.getElementById('sc-widget'),
widget = SC.Widget(widgetIframe);
widget.bind(SC.Widget.Events.READY, function() {
widget.bind(SC.Widget.Events.PLAY, function() {
// get information about currently playing sound
widget.getCurrentSound(function(currentSound) {
console.log('sound ' + currentSound.get('') + 'began to play');
});
});
// get current level of volume
widget.getVolume(function(volume) {
console.log('current volume value is ' + volume);
});
// set new volume level
widget.setVolume(10);
});
}());
</script>
有人可以帮我了解我在控制音量方面缺少什么吗?
这是一个jquery冲突吗?如果是这样,关于如何解决它的任何想法?