This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # イージングを選定する時に、イージング一覧見たい時 | |
| http://easings.net/ja | |
| # イージング | |
| easeInOutQuart 良さそう | |
| イージングで困ったら easeInOutExpo 良い | |
| もしくは、easeInOutCubic をベースにしたり | |
| もしくは、easeOutBack とか(そのまま使うとサンプルっぽいのでカスタマイズしたり) | |
| easeInOutCubic も良い |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 親コンストラクタ | |
| function Parent(name) { | |
| this.name = name || 'Naoki'; | |
| } | |
| // プロトタイプに機能を追加 | |
| Parent.prototype.say = function() { | |
| return this.name; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 少し凝った zshrc | |
| ######################################## | |
| # 環境変数 | |
| export LANG=ja_JP.UTF-8 | |
| # 色を使用出来るようにする | |
| autoload -Uz colors | |
| colors |