Skip to content

Commit

Permalink
add changes js
Browse files Browse the repository at this point in the history
  • Loading branch information
Sw1tlana committed Feb 14, 2024
1 parent b88c3c4 commit 95a7ade
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions src/js/favorities.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,20 @@ function smoothScrollToNextGroup() {

function checkContainerHeight() {
const container = refs.favoritesCard;
const extraSpace = 200;
const extraSpace = 200; // Додатковий простір
const content = container.querySelector(".list-favorites");
if (container.scrollHeight > container.clientHeight + extraSpace) {
container.style.overflowY = "scroll";
console.log(scrollHeight);
} else {
container.style.overflowY = "hidden";
const cardHeight = 165; // Висота однієї картки
const rowsToShow = 4; // Кількість рядків, після яких з'явиться скролбар

if (content) {
const rowsCount = Math.ceil(content.children.length / 3); // Кількість рядків

// Перевірка, чи кількість рядків перевищує задану кількість
if (rowsCount > rowsToShow) {
container.style.overflowY = "scroll";
} else {
container.style.overflowY = "hidden";
}
}
}

Expand Down

0 comments on commit 95a7ade

Please sign in to comment.