Jump to content
  • 0

Параллакс эффект или выезжающий блок


clgs
 Share

Question

Есть три блока, предположим шапка, скрытый блок, контент.

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

Собственно решил задачу по средствам JS, но не устраивает. Т.к. когда сролинг идёт колесом, то "прыгает" конент. А когда мышкой тащишь, то нормально.

Подскажите как сделать с помошью css или как-то более "грамотно"

Что сделано сейчас:

<header>...</header>
<style>
.benefits{margin-top:-300px}
.parallax_content{
	height:300px;
	margin:0 auto;
	overflow:hidden;
}
</style>
<script>
$(window).scroll(function(){
	var top = $(this).scrollTop();
	top=300-top;
	$('.benefits').css('margin-top', (0>top?0:'-'+top)+'px');
	
});
document.write('<div class="parallax_content"><img src="/file.jpg"></div>');
</script>
<div class="benefits">...</div>

В при крепленом файле более наглядно что нужно получить.

2017-02-18_12-06-05.png

Link to comment
Share on other sites

1 answer 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