mirror of
https://github.com/hyprwm/hyprland-website.git
synced 2024-11-17 02:45:59 +01:00
15 lines
506 B
JavaScript
15 lines
506 B
JavaScript
|
$(document).ready(function () {
|
||
|
$(".animatedVideo").each(function () {
|
||
|
$(this).get(0).pause();
|
||
|
});
|
||
|
$(window).on("scroll", function () {
|
||
|
$(".animatedVideo").each(function () {
|
||
|
let scroll = $(window).scrollTop();
|
||
|
let elementTop = $(this).offset().top;
|
||
|
let elementHeight = $(this).height();
|
||
|
if (scroll > elementTop - $(window).height() + elementHeight) {
|
||
|
$(this).get(0).play();
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
});
|