1) This First Screen appears when Web Page loads. (Screen 1)
2) After few seconds of above Screen this Screen Comes. (Screen 2)
Why this Screen 1 comes? How should I remove that bug? I just want that after Web page load Screen 2 (Video) should appear/display.
How Can I do this? I am new with this Video embedding so please help.
My code for reference :
dropboxVideo : function(){
new_video = document.createElement('video');
new_video.setAttribute('controls','true');
new_video.setAttribute('preload','none');//autoPlay: false, 'preload':'auto'
video = document.getElementById('RIZfC358yRk').appendChild(new_video);
source = document.createElement('source');
source.setAttribute('src','https://dl.dropboxusercontent.com/u/87532981/Ella%20May%20and%20the%20Wishing%20Stone%20By%20Cary%20Fagan.mp4');
video.appendChild(source);
video.load();
}