本帖最后由 Rayuni 于 2013-01-21 11:31:59 编辑

解决方案 »

  1.   

    再自己顶一下,是这样的,这里有一个JS的效果
    在http://cn.msn.com/的左下角
    有人帮忙弄到这样的代码或者写一个吗,上下平移图片
      

  2.   

    scrollFace2DPlay: function(a) {
            var b = HomePage.NewHeader;
            b.scrollFaceTimerID = setTimeout(function() {
                var f = HomePage.currentChannelIndex == 1 ? $("#womanChannel") : $("#infoChannel"), e = $(".scrollface_newtile", f).closest("li"), c = Math.floor(Math.random() * (e.length - 1));
                if (typeof a != "undefined")
                    c = a;
                var d = 2;
                $("p[class != 'title_main_newtile']", e[c]).animate({top: "-=85"}, 600, function() {
                    if (this.style.top == "-85px")
                        this.style.top = "85px";
                    d--;
                    if (d == 0)
                        if (typeof a == "undefined")
                            b.scrollFace2DPlay(c);
                        else
                            b.scrollFace2DPlay()
                })
            }, 4e3)
        }这个页面里移动的代码