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

io.scalajs.dom.event.TransitionEvent.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

/**
  * Transition Event Object
  * @author [email protected]
  */
@js.native
class TransitionEvent extends Event with TransitionEvents {

  /**
    * Returns the name of the CSS property associated with the transition
    */
  def propertyName: String = js.native

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy