Skip to content

Instantly share code, notes, and snippets.

View TanmayChakrabarty's full-sized avatar

Tanmay Chakrabarty TanmayChakrabarty

View GitHub Profile
@alessandroraffa
alessandroraffa / bootstrap-masonry-plugin.js
Last active December 27, 2020 11:54
Responsive Bootstrap 3 Masonry
$(document).ready(function () {
var masonryOptions = {
columnWidth: '.masonry-sizer',
itemSelector: '.masonry-item',
percentPosition: true
};
var $masonryContainer = $('.masonry-container');
var masonryBreakpoint = 767; // change this as you wish
var masonryActive = false;
var activateMasonry = function () {