io.scalajs.dom.event.AnimationEvents.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dom-html_sjs0.6_2.11 Show documentation
Show all versions of dom-html_sjs0.6_2.11 Show documentation
DOM/HTML bindings for Scala.js
package io.scalajs.dom.event
import scala.scalajs.js
/**
* Animation Event
* @author [email protected]
*/
@js.native
trait AnimationEvents extends js.Object {
/**
* The event occurs when a CSS animation has completed
*/
def animationend(callback: js.Function): Unit = js.native
/**
* The event occurs when a CSS animation is repeated
*/
def animationiteration(callback: js.Function): Unit = js.native
/**
* The event occurs when a CSS animation has started
*/
def animationstart(callback: js.Function): Unit = js.native
}