Skip to content

Instantly share code, notes, and snippets.

View timeglider's full-sized avatar

Michael Richardson timeglider

View GitHub Profile
@timeglider
timeglider / jquery.goldensection.js
Created October 26, 2011 16:34
a jquery plugin to set Golden Section proportions on HTML box elements
$.fn.golden = function(options) {
var gold = 1.6180339,
wid, hei, neu, $elem,
defaults = {
adjust:"height", // height || width
orientation:"horiz" // horiz || vert
},
opt = $.extend(defaults, options);