Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ogone/src/ogone.dom.d.ts>CSSKeyframesRule

Advanced Web Composition for Future
Latest
interface CSSKeyframesRule
implements CSSRule
import { type CSSKeyframesRule } from "https://deno.land/x/ogone@revb3/src/ogone.dom.d.ts";

An object representing a complete set of keyframes for a CSS animation. It corresponds to the contains of a whole @keyframes at-rule. It implements the CSSRule export interface with a export type value of 7 (CSSRule.KEYFRAMES_RULE).

Properties

readonly
cssRules: CSSRuleList
name: string

Methods

appendRule(rule: string): void
deleteRule(select: string): void
findRule(select: string): CSSKeyframeRule | null