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

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

There is a newer version: 0.4.2
Show newest version
package io.scalajs.dom.event

import io.scalajs.dom.Event

import scala.scalajs.js

/**
  * Animation Event Object
  * @author [email protected]
  */
@js.native
class AnimationEvent extends Event with AnimationEvents {

  /**
    * Returns the name of the animation
    */
  def animationName: String = js.native

  /**
    * Returns the number of seconds an animation has been running
    */
  def elapsedTime: Double = js.native

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy