Демо:

Плагины:

Подключение:

//

Разметка:

//

Стили:

//

Инициализация:

//

import { throttle } from "throttle-debounce";

let $collection = null;

function setHeight() {
    $collection.each(function () {
        const height = $(this).children().height();
        $(this).height(height);
    });
}

$(function () {
    $collection = $(".js-set-height");

    setHeight();

    $(window).on(
        "resize",
        throttle(500, () => {
            setHeight();
        })
    );
});
Рубрики: модуль

0 комментариев

Добавить комментарий

Avatar placeholder

Ваш адрес email не будет опубликован. Обязательные поля помечены *