For JW Player 7.3 you can do this via JS
playerInstance.onReady(function(){
var myLogo = document.createElement("div");
myLogo.id = "myTestLogo";
myLogo.setAttribute('style',"color: red; padding-left: 5px; margin-right: 5px; margin-top: 10px; background-image: url('/icon_dir.png');background-repeat: no-repeat;");
myLogo.setAttribute('class','jw-icon jw-icon-inline jw-button-color jw-reset jw-icon-logo');
myLogo.setAttribute('onclick','window.location="http://jwplayer.com"');
document.getElementsByClassName('jw-controlbar-right-group')[0].appendChild(myLogo);
});
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…