Skip to content

Instantly share code, notes, and snippets.

@dylanvalade
dylanvalade / bootstrap-3-carousel-keyboard.js
Last active June 22, 2017 20:42
Bootstrap carousel keyboard event controls for next and previous slides.
@dylanvalade
dylanvalade / jquery-center-vertical.js
Last active September 20, 2016 14:07
Center child element vertically within parent with jQuery
// child: jquery object e.g $(".active .slide-caption")
// parent: jquery object e.g $(".active.slide")
// property (string): CSS property to change depending on your CSS positioning e.g. "top", "margin-top" or "bottom"
function centerVertical(child, parent, property) {
var parentHeight = parent.height(),
childHeight = child.height();
// Handle edge cases with padding or margins affecting child.height() calculation
if (child.find("h1").length) {