java - Video tag Custom Controller issues on Mobile full screen -
i facing issues video tag custom controller on mobile full-screen. works fine when check on laptop in chrome , view on mobile view when check on real device, custom controller not showing on mobile full screen.
you can see demo @ http://magicwallpost.com/demo.html.
<main class="main" role="main"> <div class="custom-video" id="custom-video"> <!--the video--> <video id="myvideo" style="width:100%; height:100%;" preload="metadata"> <!-- <source src='test.mp4' type='video/mp4'> --> <source src='video.mp4' type='video/mp4'> <p>your browser not support html5 video element</p> </video> <!--controls--> <div id="mycontrols" data-config='{"nextbtn":"true","prevbtn":"true","loop":"true"}'> <div class="ctl-top"> <div class="seeker"> <progress id="progressbar" class="progressbar" max="100" value="0"></progress> <input id="seekbar" value="0" class="seekbar" type="range"> <div class="buffer"></div> <div class="played"></div> </div> </div> <div class="ctl-bottom"> <div class="ctl-left"> <button id="playpause" class="icon-play"></button> <div id="volume-ctl"> <button id="mute" class="icon-volume-2"></button> <input id="volumebar" class="volumebar" value="1" min="0" max="1" step="0.1" type="range"> </div> <div id="duration-ctl"> <span id="cr-dr">00:00</span>/<span id="tt-dr">00:00</span> </div> </div> <div class="ctl-right"> <button id="fullscreen" class="icon-fullscreen-alt"></button> </div> </div> </div> </div>
Comments
Post a Comment