jwplayer in fancybox spielt nicht auf ipad / iphone
Ich benutze den folgenden Code, aber Videos werden mit dem JW-Player in Fancybox unter iOS (iPad / iPhone) nicht abgespielt ... ansonsten funktioniert es einwandfrei. Ich schätze, dass iOS nicht mit Flash umgeht, aber ich bin mir nicht sicher, wie ich diesen Code ändern soll, um das HTML5-Fallback zu ermöglichen ...
<script type="text/javascript" src="scripts/jwplayer/html5/jwplayer.html5.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".video_popup").fancybox({
fitToView: false, // to show videos in their own size
content: '<span></span>', // create temp content
scrolling: 'no', // don't show scrolling bars in fancybox
afterLoad: function () {
// get dimensions from data attributes
var $width = $(this.element).data('width');
var $height = $(this.element).data('height');
// replace temp content
this.content = "<embed src='scripts/jwplayer/player.swf?file=" + this.href + "&autostart=true&wmode=opaque' type='application/x-shockwave-flash' width='" + $width + "' height='" + $height + "'></embed>";
}
});