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

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

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

import scala.scalajs.js

/**
  * Keyboard Events
  * @author [email protected]
  */
@js.native
trait KeyboardEvents extends js.Object {

  /**
    * The event occurs when the user is pressing a key
    */
  def onkeydown(callback: js.Function): Unit = js.native

  /**
    * The event occurs when the user presses a key
    */
  def onkeypress(callback: js.Function): Unit = js.native

  /**
    * The event occurs when the user releases a key
    */
  def onkeyup(callback: js.Function): Unit = js.native

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy