Skip to content

Instantly share code, notes, and snippets.

/* modernizr-test.js
* Daniel Ott
* 3 March 2011
* Custom Tests using Modernizr's addTest API
*/
/* iOS
* There may be times when we need a quick way to reference whether iOS is in play or not.
* While a primative means, will be helpful for that.
*/
@dggodfrey
dggodfrey / RanDom
Created December 4, 2013 23:54
Randomize items in the dom
//http://james.padolsey.com/javascript/shuffling-the-dom/
(function($){
$.fn.shuffle = function() {
var allElems = this.get(),
getRandom = function(max) {
return Math.floor(Math.random() * max);
},
shuffled = $.map(allElems, function(){
var random = getRandom(allElems.length),
@dggodfrey
dggodfrey / indexOf Array Prototype
Last active December 27, 2015 19:19
Add indexOf to the Array prototype for browsers that don't support indexOf
//ADD indexof for browsers that don't support it
if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) {
"use strict";
if (this == null) {
throw new TypeError();
}
var t = Object(this);
var len = t.length >>> 0;
if (len === 0) {
@dggodfrey
dggodfrey / image_dimension.js
Last active December 26, 2015 19:19
Simple way to determine the correct dimensions of an image taking into account a max height/width
/**
* Conserve aspect ratio of the orignal region. Useful when shrinking/enlarging
* images to fit into a certain area.
*
* @param {Number} srcWidth Source area width
* @param {Number} srcHeight Source area height
* @param {Number} maxWidth Fittable area maximum available width
* @param {Number} maxHeight Fittable area maximum available height
* @return {Object} { width, heigth }
*/
@dggodfrey
dggodfrey / in viewport
Created September 26, 2013 15:17
Returns whether the element is visible in the viewport
function isElementInViewport(el) {
var rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document. documentElement.clientHeight) && /*or $(window).height() */
rect.right <= (window.innerWidth || document. documentElement.clientWidth) /*or $(window).width() */
);
}
@dggodfrey
dggodfrey / Clearfix
Created September 25, 2013 22:14
Clearfix
/* http://css-tricks.com/snippets/css/clear-fix/ */
.group:before,
.group:after {
content: "";
display: table;
}
.group:after {
clear: both;
}
@dggodfrey
dggodfrey / smooth scroll
Last active December 23, 2015 22:59
Simple Javascript for smooth scrolling to anchors
//http://css-tricks.com/snippets/jquery/smooth-scrolling/
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
|| location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {