Draw connecting lines/curves between boxes using SVG.
This could end up in https://www.weld.io ...
Forked from Tom Söderlund's Pen Weld real-time responsive device demo.
| /** | |
| * Deep diff between two object, using lodash | |
| * @param {Object} object Object compared | |
| * @param {Object} base Object to compare with | |
| * @return {Object} Return a new object who represent the diff | |
| */ | |
| function difference(object, base) { | |
| function changes(object, base) { | |
| return _.transform(object, function(result, value, key) { | |
| if (!_.isEqual(value, base[key])) { |
| // I mean, seriously, localStorage is supported even by your mum. How about instead of | |
| // casing the feature out, you give users in-memory (stale) storage instead? | |
| // If they close your application, they deserve to lose data anyway. | |
| // if (!('localStorage' in window)) { | |
| if (!Modernizr.localstorage) { | |
| window.localStorage = { | |
| _data : {}, | |
| setItem : function(id, val) { return this._data[id] = String(val); }, | |
| getItem : function(id) { return this._data.hasOwnProperty(id) ? this._data[id] : undefined; }, |
Draw connecting lines/curves between boxes using SVG.
This could end up in https://www.weld.io ...
Forked from Tom Söderlund's Pen Weld real-time responsive device demo.
Pie timer with CSS Jquery using linear-gradient.
Forked from elaelation's Pen CSS Jquery Pie Countdown Timer.
As a response to http://css-tricks.com/css-pie-timer/ I wrote this SVG Pie Timer.
Credits: Heavily inspired by http://itpastorn.github.com/webbteknik/future-stuff/svg/color-wheel.html.
Forked from Cory's Pen Audio Player.
Pie timer with CSS Jquery using linear-gradient.
Forked from elaelation's Pen CSS Jquery Pie Countdown Timer.
| <div class="col1"> | |
| <h1>Main</h1> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ipsam, nesciunt, odio nemo doloremque maxime aperiam? Perferendis, odio, maxime, magnam accusantium provident veniam ea culpa cum suscipit illum non voluptatum quibusdam.</p> | |
| </div> |