UNPKG

10f-css-animations

Version:

Simple and fancy css animations for your projects

10 lines (8 loc) 261 B
import { isOnScreen } from "./isOnScreen.js"; export function addStyleAttrToVisibleChildren(htmlNode, atribute, value) { for (const child of htmlNode.children) { if (isOnScreen(child)) { child.style[atribute] = value; } } }