Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| * | |
| // Seriously, why isn't this just the | |
| // freakin' default in all browsers? | |
| +background-clip(padding-box) | |
| // Not sure what this does? Have a looksie... | |
| // http://compass-style.org/examples/compass/css3/background-clip | |
| // Crucial, if you have rounded corners on something with | |
| // both background color and a border. Without, background |
| <body class="<?=basename($_SERVER['PHP_SELF'],'.php')?>"> |
| /**********************************************/ | |
| /* | |
| /* IR_Black Skin by Kam Kuo - 2012 | |
| /* | |
| /* Based on Todd Werth's IR_Black: | |
| /* http://blog.toddwerth.com/entries/2 | |
| /* and Ben Truyman's Gist: | |
| /* https://gist.github.com/1150520 | |
| /* | |
| /* Inspired by Darcy Clarke's blog post: |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
| <title> - jsFiddle demo</title> | |
| <script type='text/javascript' src='lazyload.js'></script> | |
| <style type='text/css'> |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
=============================
CSS card-flip hover effect using CSS 3D Transforms. Fallback hover fade effect for browsers without full support.
A Pen by Daniel W. Robert on CodePen.
| // GALLERY IMAGE RESIZER | |
| var getMaxOfArray = function(numArray) { | |
| return Math.max.apply(null, numArray); | |
| }; | |
| var getMinOfArray = function(numArray) { | |
| return Math.min.apply(null, numArray); | |
| }; | |
| var galleryImageSize = function(selector) { |