CSSKeyframeRule

@native @JSGlobal @JSType
class CSSKeyframeRule extends CSSRule

The CSSKeyframeRule interface describes an object representing a set of style for a given keyframe. It corresponds to the contains of a single keyframe of a @@keyframes at-rule. It implements the CSSRule interface with a type value of 8 (CSSRule.KEYFRAME_RULE).

class CSSRule
class Object
trait Any
class Object
trait Matchable
class Any

Value members

Inherited methods

def hasOwnProperty(v: String): Boolean
Inherited from:
Object
def isPrototypeOf(v: Object): Boolean
Inherited from:
Object
def propertyIsEnumerable(v: String): Boolean
Inherited from:
Object
def toLocaleString(): String
Inherited from:
Object
def valueOf(): Any
Inherited from:
Object

Concrete fields

var keyText: String

Represents the key of the keyframe, like '10%', '75%'. The from keyword maps to '0%' and the to keyword maps to '100%'.

Represents the key of the keyframe, like '10%', '75%'. The from keyword maps to '0%' and the to keyword maps to '100%'.

Returns a CSSStyleDeclaration of the CSS style associated with the keyfrom.

Returns a CSSStyleDeclaration of the CSS style associated with the keyfrom.

Inherited fields

var CHARSET_RULE: Int
Inherited from:
CSSRule
Inherited from:
CSSRule
var IMPORT_RULE: Int
Inherited from:
CSSRule
Inherited from:
CSSRule
var KEYFRAME_RULE: Int
Inherited from:
CSSRule
var MEDIA_RULE: Int
Inherited from:
CSSRule
Inherited from:
CSSRule
var PAGE_RULE: Int
Inherited from:
CSSRule
var STYLE_RULE: Int
Inherited from:
CSSRule
var UNKNOWN_RULE: Int
Inherited from:
CSSRule
var VIEWPORT_RULE: Int
Inherited from:
CSSRule
var `type`: Int
Inherited from:
CSSRule
var cssText: String

cssText returns the actual text of the style rule. To be able to set a stylesheet rule dynamically, see Using dynamic styling information.

cssText returns the actual text of the style rule. To be able to set a stylesheet rule dynamically, see Using dynamic styling information.

Inherited from:
CSSRule

Returns the containing rule, otherwise null. E.g. if this rule is a style rule inside an @media block, the parent rule would be that CSSMediaRule.

Returns the containing rule, otherwise null. E.g. if this rule is a style rule inside an @media block, the parent rule would be that CSSMediaRule.

Inherited from:
CSSRule

parentStyleSheet returns the stylesheet object in which the current rule is defined.

parentStyleSheet returns the stylesheet object in which the current rule is defined.

Inherited from:
CSSRule