All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.scalajs.dom.event.AnimationEvents.scala Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy