Skip to content

Instantly share code, notes, and snippets.

@jackiewu
jackiewu / No JS: Tabs that scale down to menu.markdown
Created June 2, 2016 02:25
No JS: Tabs that scale down to menu

No JS: Tabs that scale down to menu

A tab-to-menu layout that doesn't use javascript. Modern browser compatible.

A Pen by Jake Albaugh on CodePen.

License.

@jackiewu
jackiewu / Swanky Pure CSS Drop Down Menu V2.0.markdown
Created June 1, 2016 07:05
Swanky Pure CSS Drop Down Menu V2.0

Swanky Pure CSS Drop Down Menu V2.0

Pure CSS Drop down menu. Nice little addition to any non-javascript user interface. Uses the labels for trick to toggle animations.

A Pen by Jamie Coulter on CodePen.

License.

@jackiewu
jackiewu / Pull Menu - Menu Interaction Concept.markdown
Created June 1, 2016 05:43
Pull Menu - Menu Interaction Concept
@jackiewu
jackiewu / Mole :: property curves example.markdown
Created November 20, 2015 05:23
Mole :: property curves example
@jackiewu
jackiewu / User administration (responsive).markdown
Created November 18, 2015 09:06
User administration (responsive)

User administration (responsive)

Responsive user administration UI (add, edit, delete, multi-select) with propertiesJS and Faker.js. You can resize the right sidebar too :)

A Pen by Icebob on CodePen.

License.

@jackiewu
jackiewu / RWD Table Patterns .markdown
Created November 18, 2015 09:02
RWD Table Patterns
@jackiewu
jackiewu / Pure CSS3 Mega Dropdown Menu With Animation (Vertical).markdown
Last active July 3, 2021 16:57
Pure CSS3 Mega Dropdown Menu With Animation (Vertical)
@jackiewu
jackiewu / gist:daa9772b0205d81d233c
Created October 20, 2015 04:21 — forked from niieani/gist:1213709
PHP Camel Case functions
<?php
// source: http://www.paulferrett.com/2009/php-camel-case-functions/
/**
* Translates a camel case string into a string with underscores (e.g. firstName -&gt; first_name)
* @param string $str String in camel case format
* @return string $str Translated into underscore format
*/
function from_camel_case($str) {
$str[0] = strtolower($str[0]);
@jackiewu
jackiewu / 2D animation final.markdown
Created October 5, 2015 01:29
2D animation final