Skip to content

Instantly share code, notes, and snippets.

@alexmustin
Last active January 2, 2019 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexmustin/511e88cca9ef22a38ee4d6abf4c66bb6 to your computer and use it in GitHub Desktop.
Save alexmustin/511e88cca9ef22a38ee4d6abf4c66bb6 to your computer and use it in GitHub Desktop.
Hello! Pro 1.x - Modified custom-scripts.js
/* // EQUAL HEIGHT BOXES // */
equalheight = function (container) {
var currentTallest = 0,
currentRowStart = 0,
rowDivs = new Array(),
$el,
topPosition = 0;
$(container).each(function () {
$el = $(this);
$($el).height('auto');
topPostion = $el.position().top;
if (currentRowStart != topPostion) {
for (currentDiv = 0; currentDiv < rowDivs.length; currentDiv++) {
rowDivs[currentDiv].height(currentTallest);
}
rowDivs.length = 0; // empty the array
currentRowStart = topPostion;
currentTallest = $el.height();
rowDivs.push($el);
} else {
rowDivs.push($el);
currentTallest = (currentTallest < $el.height()) ? ($el.height()) : (currentTallest);
}
for (currentDiv = 0; currentDiv < rowDivs.length; currentDiv++) {
rowDivs[currentDiv].height(currentTallest);
}
});
};
/* Resize on Load */
jQuery(window).load(function () {
equalheight('.top .wrap .widget-area');
});
jQuery(document).ready(function($) {
// Optimization: Store the references outside the event handler:
var $window = $(window);
var $targetElement = $('.top .wrap .widget-area');
function checkWidth() {
var windowsize = $window.width();
if (windowsize > 767) {
equalheight( $targetElement );
}else{
$targetElement.height("auto");
}
}
// Fade in the image
function fadeInImage() {
$('.top .wrap .home-image .textwidget').addClass('show');
}
// Execute functions on smartresize
jQuery(window).smartresize(function(e){
checkWidth();
});
// Fade in image after 1 sec
setTimeout( fadeInImage, 1000 );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment