Created
November 11, 2016 00:25
-
-
Save erin-dot-io/c79bb4d35f0990e2646fefa3e28f7101 to your computer and use it in GitHub Desktop.
Click on a grid item to show an expanded row of info below the clicked item's row.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
"use strict"; | |
function PromiseNew() { | |
$('.info-cards__info-card').on('touchstart click', checkInfoExpander); | |
$('.info-cards').on('touchstart click', '.info-expander__close', closeInfoExpanders); | |
} | |
function checkInfoExpander () { | |
if ($(this).hasClass('expanded')) { | |
closeInfoExpanders() | |
return | |
} | |
var $trigger = $(this); | |
if ($(this).siblings().hasClass('expanded')) { | |
$('.info-cards__info-card').removeClass('expanded') | |
$('.info-cards__info-expander') | |
.velocity('slideUp', { | |
complete: function() { | |
$(this).remove() | |
openInfoExpander($trigger) | |
} | |
}) | |
} else { | |
openInfoExpander($trigger) | |
} | |
} | |
function openInfoExpander($element) { | |
var $placement = findRowPlacement($element) | |
$element | |
.addClass('expanded') | |
.find('.info-card__expanded') | |
.clone() | |
.addClass('info-cards__info-expander') | |
.removeClass('info-card__expanded') | |
.insertAfter($placement) | |
.velocity('slideDown') | |
} | |
function closeInfoExpanders () { | |
$('.info-cards__info-card').removeClass('expanded') | |
$('.info-cards__info-expander') | |
.velocity('slideUp', { | |
complete: function() { | |
$(this).remove() | |
} | |
}) | |
} | |
function findRowPlacement ($element) { | |
if ($element.is(':last-of-type')) { | |
return $element | |
} else { | |
var top = $element.offset().top | |
var $after = null | |
$element.nextAll().each(function (i, v) { | |
if ($(v).offset().top !== top) { | |
$after = $(v).prev() | |
return false | |
} | |
}) | |
if (!$after) { | |
$after = $element.nextAll().last() | |
} | |
return $after | |
} | |
} | |
$(document).ready(function() { | |
new PromiseNew(); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment