Jump to content
  • 0

Как реализовано


soot
 Share

Question

Подскажите как сделать так чтобы при прокрутке странице блоки подгружали в разнобой или постепенно по мере скролинга. Например как тут http://www.yootheme.com/demo/joomla/square

 

Если не в тот топик - просьба не карать =)

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

<script>

$(window).scroll(function(){

        var scrollTop= $(window).scrollTop(); // при загрузке страницы тут 0, только дёргаешь колёсиков вниз оно прибавляется, надо учитывать разное расширение экранов с помощью $( window ).height() 

                

        if (scrollTop > 50)

            $("#div1").animate({'left' : '200px'}, 4000); // было в CSS position:relative;left:-300px; и за 4 секунды "выехало" до 200px

       if (scrollTop > 130)

            $("#div2").fadeIn(3000); // эффект разворачивания

});

</script>

Edited by rikimaru2013
Link to comment
Share on other sites

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