Autohide the logo
How to show or hide your logo on mouse hover
Configuration
flowplayer("player",
"http://releases.flowplayer.org/swf/flowplayer.commercial-3.2.11.swf",{
// product key
key: '#$7162d2d730cf607ac6d' ,
// logo initially has zero opacity
logo: {
url: '/media/img/player/acme.png',
fullscreenOnly: false,
opacity: 0
},
// gradually show on mouseover
onMouseOver: function() {
this.getPlugin("logo").fadeTo(0.5, 1000);
},
// gradually hide on mouseout
onMouseOut: function() {
this.getPlugin("logo").fadeTo(0, 1000);
}
});
JavaScript