pressure
Version:
Pressure is a lightweight JavaScript library for both Force Touch and 3D Touch through a single API.
19 lines (15 loc) • 466 B
JavaScript
//--------------------- Public jQuery API Section ---------------------//
if($) {
$.fn.pressure = function(closure, options) {
loopPressureElements(this, closure, options);
return this;
};
$.pressureConfig = function(options) {
Config.set(options);
};
$.pressureMap = function(x, in_min, in_max, out_min, out_max) {
return map.apply(null, arguments);
};
} else {
throw new Error( "Pressure jQuery requires jQuery to be loaded." );
}