Sarah's Lifestyle & Travel blog
/* This JS calculates the max-height of the card text. Allow code execution in Bricks Settings » Custom Code and execute this code element */
document.addEventListener('DOMContentLoaded', function () {
// Get all the feature cards
const featureCards = document.querySelectorAll('.brxw-feature-card-04');
// Loop through all the cards and add event listeners
featureCards.forEach(function (card) {
const textElement = card.querySelector('.brxw-feature-card-04__text');
if (textElement) {
// Initially set max-height to 0 for the text elements
textElement.style.maxHeight = '0';
textElement.style.overflow = 'hidden';
// Add hover event listeners
card.addEventListener('mouseenter', function () {
// Calculate the full height dynamically using scrollHeight
const fullHeight = textElement.scrollHeight + 'px';
textElement.style.maxHeight = fullHeight;
textElement.style.marginTop = 'var(--brxw-content-gap)';
});
card.addEventListener('mouseleave', function () {
// Reset the max-height to 0 when the hover ends
textElement.style.maxHeight = '0';
textElement.style.marginTop = '0';
});
}
});
});
Latest Posts
Tempor aute voluptate eu est ut ad laboris est proident eu irure.
Lifetime of Spring Time
Qui eius et nostrum ratione officia amet. Cumque ducimus eum sint et. Dolor voluptas sed quis aliquam. Temporibus reiciendis tempora…
Read more
Into The Sky We Go!
Tempora laborum reprehenderit vel impedit in necessitatibus. Quia libero et consequatur quos quas. Atque et qui ratione soluta quam. Aut…
Read more
Ride the wave
Beatae a et fugiat nostrum nobis. Voluptas totam voluptatibus maxime rerum autem quas ut. Libero commodi corrupti rerum mollitia dolor.…
Read more
7 Simple Ways to Recharge Your Mind and Body
Voluptas expedita velit et illo totam. Accusantium sit maiores est minus quia quam. Excepturi similique a et. Harum consequatur quibusdam…
Read more
Exploring the hills
Do ea consectetur ea adipisicing aliqua eu. Et occaecat proident irure incididunt non dolor. Velit amet culpa elit occaecat est…
Read more
Life in the northern storms
Qui in labore labore occaecat ullamco cillum minim cupidatat. Aliquip dolore eiusmod ipsum nisi nostrud Lorem. Dolor ipsum nulla labore…
Read more
This is a temporary excerpt used for demonstration purposes. It serves as a placeholder until actual content is provided.





