Jump to content
  • 0

Почему прыгает липкий блок?


d0ublezer0
 Share

Question

Использую http://leafo.net/sticky-kit/

К верхней границе прилипает блок с названием продукта https://www.road.media/headunit/volvo/993570

Но при дальнейшем скролле такое ощущение, что он пересоздаётся каждый раз. А когда докручиваю до конца страницы, то вообще большой кусок пустого места появляется.

Что самое интересное, работало же.. Не пойму никак, где я намудрил?

Вот мой код, который управляет "наклейкой" из файла mainscript.js

var $j = jQuery.noConflict();
$jwindow = $j(window);
$j(document).ready(function () {
    $sticker = $j("#product_sticker");
    if ($sticker.length) {
        var stickDistance = $sticker.offset().top + $sticker.height() + 30;
        $jwindow.scroll(flyOut);
        function flyOut() {
            var currentScroll = $jwindow.scrollTop();
            if (currentScroll > stickDistance && $jwindow.width() >= 768) {
                $sticker.stick_in_parent();
            } else {
                $sticker.trigger("sticky_kit:detach");
            }
        };

        function checkStickWidth() {
            var windowsize = $jwindow.width();
            if (windowsize < 768)
                $sticker.trigger("sticky_kit:detach");
        }

        checkStickWidth();
        // Bind event listener
        $jwindow.resize(checkStickWidth);
    }
});

 

Edited by d0ublezer0
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy