Демо:
Плагины:
Подключение:
//
Разметка:
//
Стили:
//
Инициализация:
//
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 комментариев