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.

When a user clicks on the "Contact Me" button, i want the screen to slide to the #contact element, however cannot figure out how to do it. I've tried various different snippets of code and tried to tailor it to my needs, but nothing seems to work.

The site is here; http://dombracher.com/

Simply want the screen to slide to the div mentioned above, rather than quickly snap to it.

Thanks in advance.

share|improve this question
Please post the versions you already tried and describe what didn't work. – Till Helge Jan 11 at 22:12
Hey @a_maar write that down don't be shy I'll give you vote I'm curios about that approach – kidwon Jan 11 at 22:29

3 Answers

$(document).ready(function() {
  $("a[href^='#']").anchorAnimate()
});

jQuery.fn.anchorAnimate = function(settings) {

    settings = jQuery.extend({
        speed : 1100
    }, settings);   

    return this.each(function(){
        var caller = this
        $(caller).click(function (event) {  
            event.preventDefault()
            var locationHref = window.location.href
            var elementClick = $(caller).attr("href")

            var destination = $(elementClick).offset().top;
            $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, settings.speed, function() {
                window.location.hash = elementClick
            });
            return false;
        })
    })
}
share|improve this answer
Hi, i tried this code to no avail. I'm sure your and the other posters code works fine, but it doesn't seem to work when inserting it to my header.php - as usual, it simply jumps to the div instead of sliding. Any advice? – Nikki Mather Jan 21 at 16:51
Load jquery before your custom code. – ic3b3rg Jan 21 at 17:03
Loaded jquery before the code, still nothing. Was i supposed to enter additional code to the Javascript? – Nikki Mather Jan 21 at 18:30

You can animate window scroll by yourself

$(".menu2").click(function(){
    $(document.body).animate({
        "scrollTop": $("#contact").offset().top
    }, 2000, "swing"); // animation time and easing
    return false; // preventing default jump
});

Fiddle: http://jsfiddle.net/M8JE2/

Or use jquery plugin like http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html to make any/all local links work with animation.

share|improve this answer
Can't seem to get this to work. I've added the javascript in the header, but nothing. Any ideas? – Nikki Mather Jan 11 at 23:03
Try to wrap this into $(function(){ }); - here an example fiddle.jshell.net/M8JE2/2/show/light – antejan Jan 11 at 23:12
When clicking that button on jshell, it doesn't take me to the bottom of the page as it should. – Nikki Mather Jan 11 at 23:14
Try this one fiddle.jshell.net/M8JE2/3/show/light – antejan Jan 11 at 23:20
I tried this again, still with no luck. I put the code, as per the jsfiddle, in my header.php but clicking Contact simply jumps to the div instead of sliding. – Nikki Mather Jan 21 at 16:46
show 4 more comments

Here it is , scrolls to the bottom of the page since your contact form is there:

jQuery(function () {
    jQuery('#nav1 li.menu2').click(function (e) {
        jQuery("html, body").stop().animate({
            scrollTop: jQuery(document).height()
        }, 1000);
        e.preventDefault();
        return false;
    });
});
share|improve this answer
I couldn't seem to get this to work. I added the javascript to the header, below the navigation but still no joy. Am i missing something? – Nikki Mather Jan 11 at 23:04
By just posting it you only define it but you never call it to execute! To do so: put the code here jQuery(function(){the above code placed here}); also the setActive() function you are using returns error find it and fix it and last but not least no need to have pair of <script></script> tags for each javascript code putting all the code in just one is enough. – kidwon Jan 12 at 0:09
OK, this last update definitely works I've tested it on your site. – kidwon Jan 12 at 2:19
Tried it again and still no joy - what am i doing wrong? Thanks. – Nikki Mather Jan 21 at 16:25
I wasn't loading jquery before the code, d'oh. Works perfectly, exactly what i wanted - thanks! – Nikki Mather Jan 21 at 17:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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