如何在jquery中的不同页面之间滑动

时间:2013-11-19 10:51:06

标签: jquery

我有一个5页的网站,我希望在幻灯片效果的5页之间进行转换。我想按一个按钮或链接滑动到下一页。这可以使用jQuery完成。请帮帮我。在此先感谢您的建议。 这是一个示例网站。 http://slaveryfootprint.org/survey/

我尝试使用此代码使用此类效果,但我想要比此更多的效果

                        <html lang="en"> 
                        <head>
                          <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
                        </head>
                        <body>

                        Click here...

                        <div>
                        <img src="fill/guy.jpg">
                        </div>

                        <script>
                        $( document.body ).click(function() {
                          $( "div" )

                            .show( "" )

                            .animate({ left: "+=700" }, 2000 )
                            .queue(function() {
                              $( this ).addClass( "newcolor" ).dequeue();

                            })

                            .animate({ left: "-=1500" }, 5000 ) 
                            .queue(function() {
                              $( this ).removeClass( "newcolor" ).dequeue();
                           });
                        });
                        </script>
                        </body>
                        </html>

1 个答案:

答案 0 :(得分:1)

$(firstpageid).changePage(nextpageid,transition effect) 

可能有帮助

但我认为你应该在发布之前谷歌。