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.

I've noticed several websites have pretty slick headlines, where the text drops every few seconds and becomes replaced with another word.

Skillshare.com has this in action, in "Learn by" headline. It's a great way to grab attention and keep users engaged. How can we achieve a similar effect?

share|improve this question
3  
why not grab a copy of their js source and start poking around? – Marc B Sep 27 '12 at 3:44
Right-click, 'View Source' can help you determine how they did it. There's a task running on some interval which animates the element down and replaces it with another element. – Jared Farrish Sep 27 '12 at 3:45
You have that websites HTML, CSS and JavaScript right in front of you. – Blender Sep 27 '12 at 3:45
I don't want to rip their code, and to be honest, JavaScript is not my strength. I'm proficient with CSS/HTML5 but just getting by with tutorials on JS. – Max Savin Sep 27 '12 at 4:09

closed as not constructive by John3136, ahren, Andro Selva, hjpotter92, Jeremy J Starcher Sep 27 '12 at 7:17

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Here's a demonstration:

HTML

<p id="slug">
    The word is... <span id="term">alive</span>
</p>​

CSS

#slug {
    position: relative;
    height: 40px;
    font: 32px normal serif;
    line-height: 40px;
    text-align: left;
    margin: 10px;
    padding: 10px 10px 10px 100px;
    background: #ddd;
    overflow: hidden;
}
#term {
    position: relative;
    padding: 5px 10px;
    margin: 0;
    background: #444;
    color: white;
    font-weight: bold;
}

Javascript

(function load() {        
    if (window.addEventListener) {
        window.addEventListener('load', run);
    } else if (window.attachEvent) {
        window.attachEvent('onload', run);
    }

    function run(){
        var term = document.getElementById('term'),
            terms = ['alive', 'monkey', 'word', 'alacadabra'],
            next = terms.length,
            rps = 0;

        (function schedule() {
            setTimeout(rotate, 1500);

            return;

            function rotate() {
                if (rps++ < 50) {
                    term.style.top = 80 / 40 * rps  + 'px';

                    return setTimeout(rotate, 10);
                }

                term.style.top = 0;

                term.innerHTML = terms[--next || (next = terms.length - 1)];
                rps = 0;

                schedule();
            }

        })();

    }

})();​

http://jsfiddle.net/Hpgxd/

That should give you the idea of how a "dropout" slider works.

share|improve this answer
Beautiful. Thank you! – Max Savin Sep 28 '12 at 2:37

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