UNPKG

10f-css-animations

Version:

Simple and fancy css animations for your projects

10 lines (8 loc) 258 B
import { isOnScreen } from "./isOnScreen.js"; export function removeClassToVisibleChildren(htmlNode, className) { for (const child of htmlNode.children) { if (isOnScreen(child)) { child.classList.remove(className); } } }