AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.8" />

.NET API 1,214,976 bytes

 ICssKeyframesRule

Represents a complete set of keyframes for a single animation.
using AngleSharp.Attributes; namespace AngleSharp.Dom.Css { [DomName("CSSKeyframesRule")] public interface ICssKeyframesRule : ICssRule, ICssNode, IStyleFormattable { [DomName("name")] string Name { get; set; } [DomName("cssRules")] ICssRuleList Rules { get; } [DomName("appendRule")] void Add(string rule); [DomName("deleteRule")] void Remove(string key); [DomName("findRule")] ICssKeyframeRule Find(string key); } }