How to add Back Button control on Video that is streaming on Ionic App?

Hi Sir/Ma’am,

I want to add Back button on video that is currently streaming on Ionic App page ?
Is there any way ?
Please let me know ?

Thank You.

Regards,
Vishal Sharma

Hi,

You could do something like this:

<div class="videoWrapper">
   <video> your video </video>
   <button class="backBtn"> back </button>
</div>

Then in your css:

.videoWrapper {
    position: relative; 
}

// set your prefered width to videoWrapper and fit the video inside

.backBtn {
    position: absolute; 
    top: 10px; 
    left: 10px; 
    z-index: 1; 
}