Trial.js
simple library could monitor mouse position and predict user input
- No dependency
- Lightweight (~1kb gzipped)
- Automatically extends
jQuery
andZepto
properties
APIs
Trial(selector)
@params selector {String|Node|NodeList|Array{Node}|jQuery object}
@return {Trial instance}
@constructor
Initialize a new Trial instance related to selector, same selector would only have one Trial instance, if Trial(selector)
be called twice with same selector, the second calling would return the same instance created in first calling.
selector
could be query string, NodeList or $
object
Trial.fn.within(options, callback)
@params options {Object}
@params callback {Function}
@return {Trial instance}
This method sets a circular area on matched element, when mouse pointer moving within this area, event handler would be called
options:
distance
{Number} : determine the radius of the circular area
cord
{String} : determine the center of the circular area, could be center
, topLeft
, topCenter
, topRight
, centerLeft
, centerRight
, bottomLeft
, bottomCenter
, bottomRight
callback
An event handler to be called when mouse pointer moving within the circular area, arguments:
distance
{Number} : current distance between mouse pointer and matched element ele
{Node} : matched element event
{Event} : mousemove event
Trial.fn.enter(options, callback)
@params options {Object}
@params callback {Function}
@return {Trial instance}
same as Trial.fn.within
, but only call the event handler when mouse pointer enter the circular area
options:
distance
{Number} : determine the radius of the circular area
cord
{String} : determine the center of the circular area, could be center
, topLeft
, topCenter
, topRight
, centerLeft
, centerRight
, bottomLeft
, bottomCenter
, bottomRight
callback
An event handler to be called when mouse pointer enter the circular area, arguments:
distance
{Number} : current distance between mouse pointer and matched element ele
{Node} : matched element event
{Event} : mousemove event
Trial.fn.leave(options, callback)
@params options {Object}
@params callback {Function}
@return {Trial instance}
same as Trial.fn.within
, but only call the event handler when mouse pointer leave the circular area
options:
distance
{Number} : determine the radius of the circular area
cord
{String} : determine the center of the circular area, could be center
, topLeft
, topCenter
, topRight
, centerLeft
, centerRight
, bottomLeft
, bottomCenter
, bottomRight
callback
An event handler to be called when mouse pointer leave the circular area, arguments:
distance
{Number} : current distance between mouse pointer and matched element ele
{Node} : matched element event
{Event} : mousemove event
Trial.fn.off(eventName)
@params eventName {String}
@return {Trial instance}
Unbind an event handler for specific event, eventName could be within
, enter
, leave
Browser Supports
IE 9+
License
MIT