BT101
BT101

Reputation: 3836

Weird frame when loading video.js

I have Vue app in which I use "vue-video-player": "^5.0.2", which use video.js library.

Sometimes when video is loading after I enter page I see weird frame rotating very fast at the bottom right of page. I took 2 screenshots I clicked PrtScr button very fast:

enter image description here

enter image description here

It sometimes also happen when video stop because of slow network connection:

enter image description here

It looks like it's related to loading but I don't think it's spinner. Can I somehow remove/hide it?

Upvotes: 0

Views: 324

Answers (1)

falinsky
falinsky

Reputation: 7438

Indeed it's related to your loading spinner. To be precise due to the next class:

.bg-video__content div {
    height: 100%;
    width: 100%;
}

So your circle spinner just expanded to the whole wrapper size.

Upvotes: 1

Related Questions