sioux-offscreen
Version:
An off screen navigation item. Similar to the menu of the Facebook and Path app
35 lines (27 loc) • 976 B
Markdown
The collection of basic features that are important and useful for working with the other parts of the `sioux` project. It is optional to make it global, but it is recommended. The features listed after, are basically just shorthands to the DOM ones.
``` js
var $ = require('sioux-global');
// window.$ = $;
console.log($.isTouchDevice);
$('button')
.on('tap', function () {
console.log('tapped!');
})
.on('touchleave', function (event) {
console.log('left!');
})
.css('color', 'red')
.css({
'border-radius': '5px'
, 'border': '1px solid red'
});
```
matches the elements with the `selectorText`, if `parentElement` defined it will query in it
adds an event handler to the matched elements
removes the event handler from the matched elements
pretty much same as in jquery