Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CSSTransition

interface CSSTransition extends Animation {
readonly transitionProperty: string;
addEventListener<K extends keyof AnimationEventMap>(
type: K,
listener: (this: CSSTransition, ev: AnimationEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void;
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void;
removeEventListener<K extends keyof AnimationEventMap>(
type: K,
listener: (this: CSSTransition, ev: AnimationEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void;
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void;
}
var CSSTransition: {
prototype: CSSTransition;
new (): CSSTransition;
}
;

§Extends

§Properties

§
readonly transitionProperty: string
[src]

§Methods

§
addEventListener<K extends keyof AnimationEventMap>(
type: K,
listener: (this: CSSTransition, ev: AnimationEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
removeEventListener<K extends keyof AnimationEventMap>(
type: K,
listener: (this: CSSTransition, ev: AnimationEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
[src]
§
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void
[src]