I'm a junior frontend developer and I am building a video player and I cannot create that circular pointer at the end of the video progress bar. I've tried to create a span and div with dimensions but it doesn't display anything in the browser. I'm using vue and Nuxt 3 Js.
This is the sample of my code:
<div class="progress-bar" @click="skipVideo">
<div :style="{ width: progressPercentage() + '%' }" class="current-bar"></div>
</div>
I've tried to create a span and div with dimensions but it doesn't display anything in the browser.