Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I achieve the top image and then fixed top nav bar effect of this website? Specifically, the way the top navigation bar scrolls over the top sliding image plugin, then becomes fixed. http://www.creuna.se/

share|improve this question
1  
Please put at least some investigation effort in your question – keaukraine Nov 9 '12 at 8:22
I have no idea though.. It's not that simple an effect. If you don't know how it's done then why bother commenting? You're wasting your time and mine. – Barney Nov 9 '12 at 8:28
1  
Did you view the source, use the dev tools? – Kyle Sevenoaks Nov 9 '12 at 8:31
1  
Oh OK. The scrolling/parallax effects similar to the ones you are looking for are described here: smashinghub.com/… May be some of these plugins will be suitable for you. – keaukraine Nov 9 '12 at 8:33
Yeahh I had a look at the source, couldn't make sense of it. Thanks @keaukraine, that's similar to what I was looking for :) – Barney Nov 9 '12 at 8:50

closed as not a real question by NULL, Kyle Sevenoaks, Shree, NullPoiиteя, Adriano Nov 9 '12 at 11:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 1 down vote accepted

Here is the sample and link how can you achieve you may need a JQuery plugin to create such a header slider

http://cssglobe.com/lab/easyslider1.7/01.html

For sticking the Nav bar in the header after scroller past it: Here is the simple code snippet and demo HTML:

<div id="container">
    <div id="navwrap">NAV WRAP</div>
</div>

Javascript:

function fixDiv() {
    var $div = $("#navwrap");
    if ($(window).scrollTop() > $div.data("top")) { 
        $('#navwrap').css({'position': 'fixed', 'top': '0', 'width': '100%'}); 
    }
    else {
        $('#navwrap').css({'position': 'static', 'top': 'auto', 'width': '100%'});
    }
}

$("#navwrap").data("top", $("#navwrap").offset().top); 
// set original position on load
$(window).scroll(fixDiv);

demo of the above at JsFiddle http://jsfiddle.net/5ADzD/1/

Reference post: Sticking Div to Top After Scrolling Past it Hope this was helpful.

share|improve this answer
brilliant, thanks! :) – Barney Nov 9 '12 at 8:54

Not sure if I get you right, but maybe this can help you :

http://api.jquery.com/show/

With a very high value, you can achieve that the picture comes in very slowly:

$(document).ready(function () {
    $("#nav").show(6000);
});
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.