You have few solutions, for example, using Ajax to add content to "new pages" and add some gliding effect using jQuery. The Stack Overflow section has several topics:
slide between pages using jQuery
Tips for moving between page effects
Or just add some effect to the page, ready as in this example:
<html> <head> <script src="js/jquery-1.7.2.min.js"></script> <script> $(document).ready(function(){ $('body div').slideDown(); }); </script> </head> <body> <div style="width: 400px; height: 400px; background-color: blue; display: none;"> <a href="page2.htm" style="color: white;">PAGE 2>></a> </div> </body>
<html> <head> <script src="js/jquery-1.7.2.min.js"></script> <script> $(document).ready(function(){ $('body div').slideDown(); }); </script> </head> <body> <div style="width: 400px; height: 400px; background-color: red; display: none;"> <a href="page1.htm" style="color: white;">PAGE 1>></a> </div> </body>
Good luck
X-spert
source share