0

I want to be able to create a similar effect that Facebook paper link have created.

Having a button on the right hand slide that slides in new content while then creating the back button. But I don't know what language or what method is best to implement this. Could anyone point me in the right direction?

Thanks.

Aravin
  • 4,126
  • 1
  • 23
  • 39
faooful
  • 105
  • 1
  • 2
  • 8

1 Answers1

1

The quick and dirty would be use jQuery and jQuery UI.

$('#your-object').show("slide", { direction: "left" }, 1000);

For a more detailed answer, see jQuery .slideRight effect

Community
  • 1
  • 1
Casey Dwayne
  • 2,142
  • 1
  • 17
  • 32