JLogam - JavaScript Library for Open Gestures Acessibility Mobile
JLogam or JavaScript Library for Open Gestures Acessibility Mobile is a HTML 5 project to provide gestures based interfaces for mobile applications.
Is a project developed to FATEC-SJC on the Analysis and Systems Development course
First use de function JLogam.setup()
to configure JLogam. This function returns true when the library is supported by the browser. See the following example.
if(JLogam.setup()){
JLogam.on(
"cheers",
function(){
alert("I'm using the JLogam Library!");
});
}