Skip to content

Instantly share code, notes, and snippets.

View skylerzhang's full-sized avatar
😀
Focusing

skyler skylerzhang

😀
Focusing
View GitHub Profile
@skylerzhang
skylerzhang / move.js
Last active August 29, 2015 14:02
运动框架
function getStyle(obj, name){
return (obj.currentStyle || getComputedStyle(obj, false))[name];
}
function startMove(obj,json, options){
clearInterval(obj.timer);
var json= json || {};
var options= options || {};
options.time = options.time || 700;
options.type = options.type || 'ease-out';
var count= Math.floor(options.time/30);
@skylerzhang
skylerzhang / sublime shortcuts
Last active January 2, 2016 07:19 — forked from lucasfais/gist:1207002
sublime shortcuts
h1. Sublime Text 2 - Useful Shortcuts (Mac OS X)
h2. General
| *⌘T* | go to file |
| *⌘⌃P* | go to project |
| *⌘R* | go to methods |
| *⌃G* | go to line |
| *⌘KB* | toggle side bar |
| *⌘⇧P* | command prompt |