音量を低く設定できるように、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の競合ですか?もしそうなら、それを解決する方法について何か考えはありますか?