有名なjQuery Flipを作る方法は何でも!プラグインはテキストのみに影響しますか? ...テキストが消えてから「回転」の最後に再び現れるのではなく、実際に回転するのを見るのと同じように?
var $flipBox  = $('span#flipbox'),
    flip_opts = [{
        direction: 'tb',
        speed: 600,
        content: "NUMBER TWO"
    },
        {
            direction: 'tb',
            speed: 600,
            content: "NUMBER 3"
        },
        {
            direction: 'tb',
            speed: 600,
            content: "NUMBA 4"
        }
    ],
    curr_indx = 0,
    timer     = setInterval(function () {
        if (curr_indx >= flip_opts.length) {
            curr_indx = 0;
        }
        $flipBox.flip(flip_opts[curr_indx]);
        curr_indx++;
    }, 3000);
フィドル: http://jsfiddle.net/Ws6sS/
タイマーでセットです