2

YouTube iframe API を使用して、プレーヤーの外部にある html ボタンまたはリンクを使用して、サウンドのオンとオフを切り替えることが可能かどうか (およびその方法) を知りたいです。

ありがとう、
マウロ

4

1 に答える 1

-1

完全な仕様とダウンロード については、 jQuery Youtube Pluginを参照してください。
次のようにプレーヤーを宣言できます。

 jQuery("#youtube-player-container").tubeplayer({
        width: 600, // the width of the player
        height: 450, // the height of the player
        allowFullScreen: "true", // true by default, allow user to go full screen
        initialVideo: "DkoeNLuMbcI", // the video that is loaded into the player
        preferredQuality: "default",// preferred quality: default, small, medium, large, hd720
        onPlay: function(id){}, // after the play method is called
        onPause: function(){}, // after the pause method is called
        onStop: function(){}, // after the player is stopped
        onSeek: function(time){}, // after the video has been seeked to a defined point
        onMute: function(){}, // after the player is muted
        onUnMute: function(){} // after the player is unmuted
    });
Then just add a link with the desired function:
<a href="#" onClick='jQuery("#youtube-player-container").tubeplayer("mute")'>   
Mute player 

于 2012-04-11T07:35:34.860 に答える