Skip to content

Instantly share code, notes, and snippets.

View thm-design's full-sized avatar
Just build it.

Tony H Meyer thm-design

Just build it.
View GitHub Profile
@thm-design
thm-design / jquery.nivo.slider.js
Created December 6, 2011 12:25
Nivo Slider modification: 100% width, bg color cycling + transparent image support
/*
* jQuery Nivo Slider v2.6
* http://nivo.dev7studios.com
*
* Copyright 2011, Gilbert Pellegrom
* Free to use and abuse under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
*
* 100% width + background color cycle + transparent image by Tony H. Meyer
@thm-design
thm-design / index.html
Created December 31, 2012 20:01
A CodePen by jlevinsohn. Title Bars - Collection of title bars and toggles
<div class="step-bar title-bar-dark">
<div class="steps">
<ul class="step">
<li class="active"><a href="#">Step 1</a></li>
<li><a href="#">Step 2</a></li>
<li><a href="#">Step 3</a></li>
<li><a href="#">Step 4</a></li>
</ul>
</div>
</div>
@thm-design
thm-design / script.coffee
Created December 31, 2012 20:03
A CodePen by Jack Rugile. Bubble Sketch.js Test - Giving Sketch.js, by Soulwire, a quick test and loving it. Learn more about it here: http://soulwire.github.com/sketch.js/
# General Variables
sketch = Sketch.create()
particles = []
particleCount = 750
sketch.mouse.x = sketch.width / 2
sketch.mouse.y = sketch.height / 2
sketch.strokeStyle = 'hsla(200, 50%, 50%, .4)'
sketch.globalCompositeOperation = 'lighter'
# Particle Constructor
@thm-design
thm-design / index.html
Created December 31, 2012 20:04
A CodePen by charlie hield. CSS Buttons - In this iteration, these buttons only use unicode symbols. You could also use text or icon fonts. Please see my <a href="http://dribbble.com/shots/743236-CSS-Buttons-Widget">Dribbble shot</a> or <a href="http://trinkaus.cc/labs/buttons.html">LABS@TRINKAUS.CC</a> for more examples. The next step would be …
<div class='buttons'>
<a href='#' title='Title 1'>
&#x2606;
</a>
<a class='active' href='#' title='Title 2'>
&#x262F;
</a>
<a href='#' title='Title 3'>
&#x2666;
</a>
@thm-design
thm-design / index.html
Created December 31, 2012 20:05
A CodePen by GasDauMin.
<div id="warp">
<br />
<label for="check"><input id="check" type="checkbox"><span class="strip"></span></label><br /><br />
<label for="check2"><input checked id="check2" type="checkbox"><span class="strip"></span></label>
<br />
<br />
<br />
</div>
@thm-design
thm-design / index.html
Created December 31, 2012 20:25
A CodePen by simurai. Chameleon Theme - Adapting to ANY color. Not really possible with CSS alone. Next stop -> SCSS.
<h1>Chameleon Theme</h1>
<h2>Adapting to <span id="color">ANY</span> color.</h2>
<input id="input-color" type="color" value="#00aaff">
<ul class="box">
<button>Button</button>
</ul>
<p>Not really possible with CSS alone.</p>
@thm-design
thm-design / index.html
Created January 1, 2013 19:29
A CodePen by Tony Meyer. 404 No signal
<h1>404</h1>
<div class="frame">
<div></div>
<div></div>
<div></div>
</div>
<div class="caps"><img src="http://ademilter.com/caps.png" alt=""></div>
<canvas id="canvas"></canvas>
@thm-design
thm-design / index.html
Created January 15, 2013 13:06
A CodePen by Tony Meyer. Slide to Check - A mobile friendly interactive checkbox. Slide or tap the checkbox to toggle it.
<input type='checkbox'><br>
<input type='checkbox' checked><br>
<input type='checkbox'>

Contract Killer 3

Revised date: 07/11/2012

Between us [company name] and you [customer name]

Summary:

We’ll always do our best to fulfil your needs and meet your expectations, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We’ve no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.

// History.js It!
// v1.0.1 - 30 September, 2012
// https://gist.github.com/854622
(function(window,undefined){
// Prepare our Variables
var
History = window.History,
$ = window.jQuery,
document = window.document;