Skip to content

Instantly share code, notes, and snippets.

@Vterebenin
Last active August 9, 2019 10:46
Show Gist options
  • Select an option

  • Save Vterebenin/a746aee3ae993619c9751536b888c5a7 to your computer and use it in GitHub Desktop.

Select an option

Save Vterebenin/a746aee3ae993619c9751536b888c5a7 to your computer and use it in GitHub Desktop.
Отложенная загрузка карты
if ($("#js-map-loader").length) {
map = $("#js-map-loader") // айдишник блока в котором будет карта
$(window).scroll(function () {
if ($(window).scrollTop() > (map.offset().top - $(window).height())) {
if ($("#js-map-loader iframe").length === 0) {
// аппендим код карты
$("#js-map-loader").append("<iframe frameborder='0' height='1080' src='https://yandex.ru/map-widget/v1/?um=constructor%3A12e7ecd65e53d92c0026ea8421b362b4a4ba635f1cbdf5899bc3273afb1bc21b&amp;source=constructor' width='100%'></iframe>")
}
} else {
return false
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment