|  | Re: Transition from Video to Image by Curtis Thompson on Jun 11, 2012 at 4:55:12 pm |
hello...
what embedded player are you using? or do you just have it as an embed tag? in html5 (so not supported by older browsers), there is the onended media event that you can use like this:
var player = document.getElementById('vidLayer');
player.onended = function() {
/** change the player div content or turn on a layer above it */
}
that in theory would work, but again only for html5 compatible browsers...otherwise, you'd have to work within a bit of player code that supported that sort of thing...
hope that helps!
sitruc
| |