Q
Q
qwerty17772018-07-13 14:42:56
css
qwerty1777, 2018-07-13 14:42:56

How to disable playback of the video tag when it is out of viewport'a?

Question about optimization. How to disable playback of the video tag when it is out of viewport'a?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Stalker_RED, 2018-07-13
@Stalker_RED

$(window).on('scroll', function(){
  if (! $(myPlayer).visible( true )) {
     myPlayer.stop()
  }
})

C
chubahu, 2018-07-14
@chubahu

To do this, they came up with Intersection Observer

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question