开发者

How to make a 'forward' button [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.

Want to improve this question? Update the question so it focuses on one problem only by editing this post.

Closed 3 years ago.

开发者_JAVA百科 Improve this question

I a make the 'back' button, which I can use to add back to the className.

However, I want to make a forward button, that slide right when clicked.


You are going to have to do some CSS styling of your own, however

<div class="toolbar">
    <a class="button back" href="#">Home</a>
    <a id="someId" class="button slide listButton" href="#targetPage">List</a>
</div>

will work with bit of CSS... (i.e. you are going to get a rectangle button by default, you need a button that is a mirrored back button, look at the back button css on how to

Edit: I changed the href so that it automatically goes to the taget page. Otherwise you will have to take out the "slide" class add an id, and then add some handler in the javascript:

 $('#someId').tap(function(){ jQT.goTo('targetPage'); });
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜