Git Product home page Git Product logo

Comments (9)

jgermade avatar jgermade commented on July 17, 2024

maybe you can use .one(); adds a listener that is automatically detached once it runs

In any case, I'm going to review .on() in order to include namespaces

Thanks @RongBranovate !!

from jqlite.

jgermade avatar jgermade commented on July 17, 2024

I am working on enhance event bindings with namespaces. Meanwhile, I was thinking in your issue, maybe following code works for you:

function onEsc (e) {
   if( e.keyCode === 27 ) {
      console.log('ESC pressed');
      $(document.body).off('keydown', onEsc);
   }
}

$(document.body).on('keydown', onEsc);

from jqlite.

RongBranovate avatar RongBranovate commented on July 17, 2024

Thanks for the tip, the only problem is that i'm working with the media
API, and when i'm with a full screen video i can't seem to detect the ESC
key...
בתאריך 5 באוג' 2015 23:32,‏ "Jesús Germade" [email protected] כתב:

I am working on enhance event bindings with namespaces. Meanwhile, I was
thinking in your issue, maybe following code works for you:

function onEsc (e) {
if( e.keyCode === 27 ) {
console.log('ESC pressed');
$(document.body).off('keydown', onEsc);
}
}

$(document.body).on('keydown', onEsc);


Reply to this email directly or view it on GitHub
#25 (comment).

from jqlite.

jgermade avatar jgermade commented on July 17, 2024

html5 video?

from jqlite.

RongBranovate avatar RongBranovate commented on July 17, 2024

Yeah
בתאריך 6 באוג' 2015 01:31,‏ "Jesús Germade" [email protected] כתב:

html5 video?


Reply to this email directly or view it on GitHub
#25 (comment).

from jqlite.

jgermade avatar jgermade commented on July 17, 2024

unfortunatelly seems that fullscreen mode doesn't allow capture keyboard events

I was playing with this code to toggle fullScreen:

HTMLElement.prototype.requestFullscreen = HTMLElement.prototype.requestFullscreen || HTMLElement.prototype.mozRequestFullscreen || HTMLElement.prototype.webkitRequestFullscreen || HTMLElement.prototype.msRequestFullscreen;
$.fn.fullScreen = function () {
   this.each(function (index) {
      this.requestFullscreen();
   });
};
var isFullscreen = false;
$(document.body).on('keyup', function (e) {
   console.log('keyup', e.keyCode);
   if( e.keyCode === 27 ) {
      if( !isFullscreen ) {
         $('video').fullScreen();
      }
      isFullscreen = !isFullscreen;
   }
});
$(document.body).on('keydown', function (e) {
   console.log('keydown', e.keyCode);
});

from jqlite.

RongBranovate avatar RongBranovate commented on July 17, 2024

that's what i kinda did.... so you're saying my only option is to try to detect the video element size?

from jqlite.

jgermade avatar jgermade commented on July 17, 2024

really, not sure whick is the goal of the feature you're developing

from jqlite.

RongBranovate avatar RongBranovate commented on July 17, 2024

yeah, it's getting out of this issue's scope, thanks any way!

from jqlite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.