Last active
August 9, 2019 10:46
-
-
Save Vterebenin/a746aee3ae993619c9751536b888c5a7 to your computer and use it in GitHub Desktop.
Отложенная загрузка карты
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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&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