'Svelte.js, Video tag broken

I have a video tag, only works in pc browser, Phone browsers it just shows the posters and stays still at 00:00 duration,.... i have the file extension [webm, ogv and mp4] none fixed it .

<div class="video">
            <center>
                <video src="/static/intro.mp4" autoplay loop muted playsinline id="myVideo"
                    controls
                    poster="https://sveltejs.github.io/assets/caminandes-llamigos.jpg"
                    on:touchmove|preventDefault={handleMove}
                    on:mousedown|preventDefault
                    on:mouseup|preventDefault
                    bind:currentTime={time}
                    bind:duration
                    bind:paused>
                      <track kind="captions"/>
                </video>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source