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
| /** | |
| * Typewriter.js 0.0.1 | |
| * @author Kyle Foster (@hkfoster) | |
| * @license MIT (http://www.opensource.org/licenses/mit-license.php/) | |
| */ | |
| var typewriter = ( function() { | |
| var headline = document.querySelector( '.typewriter' ); |
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
| /** | |
| * MyModule 0.0.1 | |
| * A short description of your module | |
| * @author Me (@me) | |
| * @license MIT | |
| */ | |
| ;( function( root, factory ) { | |
| if ( typeof define === 'function' && define.amd ) { | |
| define( factory ); |
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
| /* ===================================== * | |
| * Preformatted text | |
| * ------------------------------------- */ | |
| $color-code: #58728A; | |
| $color-code-background: #EDF5F7; | |
| $color-code-punctuation: #7EC9FF; | |
| $color-code-tag: #DD2F41; | |
| $color-code-selector: #F69523; | |
| $color-code-keyword: #25C894; |
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
| /** | |
| * Interval 0.0.2 | |
| * A turnkey requestAnimationFrame replacement for setInterval | |
| * @author Kyle Foster (@hkfoster) | |
| * @license MIT | |
| **/ | |
| const interval = { | |
| set: (fn, delay) => { | |
| if (!window.requestAnimationFrame) return window.setInterval(fn, delay) |
OlderNewer