https://github.com/davidkpiano/skylake
:gem: A light JavaScript library.
https://github.com/davidkpiano/skylake
Last synced: about 1 month ago
JSON representation
:gem: A light JavaScript library.
- Host: GitHub
- URL: https://github.com/davidkpiano/skylake
- Owner: davidkpiano
- License: mit
- Created: 2016-11-02T11:45:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-25T17:47:38.000Z (over 8 years ago)
- Last Synced: 2025-03-30T10:41:27.624Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 112 KB
- Stars: 10
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Skylake
A light JavaScript library.
## Installation
$ npm install --save-dev skylake
## Usage
Look at the **src** folder in the github repository for more information
### Import
import S from 'skylake'
### Return the body node of the document
const body = S.Dom.body
### Add scroll event listener
S.Listen(window, 'add', 'scroll', callback)
### Launch performance.now() polyfill
S.Polyfill.perfNow()
### Check if a variable is an object
const isObj = S.Is.object(variable)
### Play animations with Merom
const animation = new S.Merom('.element', '3dy', 0, 100, 1000, 'Power4InOut')
animation.play()
animation.pause('on')
animation.pause('off')### Build sequences of Merom with Timeline
const tl = new S.Timeline()
tl.from('#element-0', '3dy', 0, 100, 1000, 'ExpoOut', {delay: 500})
tl.from('#element-1', 'opacity', 1, 0, 500, 'linear', {callback: myCallback})
tl.play()
tl.pause('on')
tl.pause('off')## Author
Aristide Benoist
[www.aristidebenoist.com](http://www.aristidebenoist.com)
## Licence
The MIT License (MIT)
Copyright (c) 2016 Aristide Benoist
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.