document.querySelector('.modal').addEventListener('scroll', function() { document.querySelectorAll('.video_wrap video').forEach(function(video) { const videoHeight = video.clientHeight; //비디오 높이 const videoTop = video.getBoundingClientRect().top - videoHeight; if (videoTop -(videoHeight + videoHeight / 2)) { // 여유사이즈 동영상 높이의 절반 video.play(..