Skip to content

Instantly share code, notes, and snippets.

View evanleck's full-sized avatar

Evan Lecklider evanleck

View GitHub Profile

80s Typography

I've successfully combined 4 things I absolutely love, Typography, Design, Web Development and 80s style bravado. Super happy with the results. All done in CSS.

A Pen by David Parker on CodePen.

License.

Solar System animation - Pure CSS

Here is a true time scaled solar-system, which means that every objects have a time relative to an Earth year.

A Pen by Malik Dellidj on CodePen.

License.

var x;
var y;
x = 5;
y = 7;
// or
var x = 5;
var y = 7;
@evanleck
evanleck / markup.html
Created March 19, 2015 17:39
Direct Descendents
<h1>
<a>This one gets selected</a>
<span>
<a>But this one doesn't</a>
</span>
</h1>
@evanleck
evanleck / params.js
Last active December 1, 2015 21:42
Super simple parser of query string parameters.
/*
* Params.js
*
* Super simple parser of query string parameters.
* Creates a variable 'params' on the 'window' object.
*
*/
(function() {
var params = {},
capture = void 0,
@evanleck
evanleck / html.html
Last active August 29, 2015 14:24
Simpler Handler
<a href='video_content'>Show Video</a>
<a href='about_content'>Show About</a>
<div id='video_content'>...</div>
<div id='about_content'>...</div>