2015-07-28 89 views
-2

我需要你的幫助視頻元素,我需要這個代碼重寫的javascript:需要創建通過javascript

<video width="'.$width.'" height="'.$height.'" id="player1" '.$img.'> 
    <source type="application/x-mpegURL" src="'.$manifest.'" /> 
</video> 

<script> 

var viewportHeight = $(window).height(); 
$("#player1").height(viewportHeight); 

$('video').mediaelementplayer({ 
    success: function(media, node, player) { 
     $('#' + node.id + '-mode').html('mode:' + media.pluginType); 
    } 
}); 
</script> 

,所以我需要動態地構造的視頻元素,然後將mediaelementplayer到此元素。

請幫助我,謝謝!

+0

我不認爲你自己尋找解決方案。 –

+0

http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_video_create – AshBringer

回答

0
$(function(){ 
    var winWidth=$(window).width(); 
    var winHeight=$(window).height(); 
    $("body").append("<video width='"+winWidth+"' height='"+winHeight+"'><source src='"+$manifest+"' type='video/mp4'></source></video>"); 
});`