如何使用類似於Google Play商店的jQuery移動版來執行此類導航標籤?帶有與Google Play商店類似的jQuery移動版的導航標籤
1
A
回答
4
您可以使用刷卡事件和你的HTML使用切換,或使用$ .mobile.changePage(URL),例如
$('div[data-role=page]').on('swipeleft, swiperight ', go);
function go(event) {
switch(event.type) {
case 'swiperight':
console.log('swiperight');
$('#divid2,#divid3').toggle(false);
$('#divid1').toggle(true);
break;
case 'swipeleft':
console.log('swipeleft');
$('#divid1,#divid2').toggle(false);
$('#divid3').toggle(true);
break;
}
}
類似的東西或部件之間用jQuery動態切換你可以使用jquery animate來淡出html部分,或者使用$ .mobile.changePage(url),它可以在不同的頁面之間切換,如果你有相同的頁眉和頁腳,它將看起來像標籤。
+0
你可以爲它製作代碼筆嗎?提前致謝! –
0
<div id="home" data-role="page">
<div data-role="header">
<h1>Home</h1>
</div>
<div data-role="content">
<p>
<a href="#page-1">Page 1</a>
</p>
</div>
</div>
<div id="page-1" data-role="page">
<div data-role="header">
<a href="#" data-icon="arrow-l" data-iconpos="left" data-rel="back" data-transition="slide" data-direction="reverse">Back</a>
<h1>Page 1</h1>
</div>
<div data-role="content">
<p>Page 1 content</p>
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#page-1" data-role="tab" data-icon="grid" class="ui-btn-active">Page 1</a></li>
<li><a href="#page-2" data-role="tab" data-icon="grid">Page 2</a></li>
<li><a href="#page-3" data-role="tab" data-icon="grid">Page 3</a></li>
</ul>
</div>
</div>
</div>
<div id="page-2" data-role="page">
<div data-role="header">
<a href="#" data-icon="arrow-l" data-iconpos="left" data-rel="back" data-transition="slide" data-direction="reverse">Back</a>
<h1>Page 2</h1>
</div>
<div data-role="content">
<p>Page 2 content</p>
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#page-1" data-role="tab" data-icon="grid">Page 1</a></li>
<li><a href="#page-2" data-role="tab" data-icon="grid" class="ui-btn-active">Page 2</a></li>
<li><a href="#page-3" data-role="tab" data-icon="grid">Page 3</a></li>
</ul>
</div>
</div>
</div>
<div id="page-3" data-role="page">
<div data-role="header">
<a href="#" data-icon="arrow-l" data-iconpos="left" data-rel="back" data-transition="slide" data-direction="reverse">Back</a>
<h1>Page 3</h1>
</div>
<div data-role="content">
<p>Page 3 content</p>
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#page-1" data-role="tab" data-icon="grid">Page 1</a></li>
<li><a href="#page-2" data-role="tab" data-icon="grid">Page 2</a></li>
<li><a href="#page-3" data-role="tab" data-icon="grid" class="ui-btn-active">Page 3</a></li>
</ul>
</div>
</div>
</div>
jQuery的
$("a[data-role=tab]").each(function() {
var anchor = $(this);
anchor.bind("click", function() {
$.mobile.changePage(anchor.attr("href"), {
transition: "none",
changeHash: false
});
return false;
});
});
$("div[data-role=page]").bind("pagebeforeshow", function (e, data) {
$.mobile.silentScroll(0);
$.mobile.changePage.defaults.transition = 'slide';
});
如需進一步信息查詢
http://jquerymobile.com/demos/1.2.0/docs/toolbars/docs-navbar.html
相關問題
- 1. 導航視圖菜單類似Google Play商店
- 2. 製作類似於Google Play商店的佈局
- 3. 獲得類似Google Play商店「列表內列表」的結果
- 4. 改變標籤標題像Play商店
- 5. 版本與Google Play商店中的設備不兼容
- 6. Google Play商店 - 從測試版移動到製作時的歧義
- 7. Google Play商店佈局。問題與apktool
- 8. 移動標籤導航
- 9. Google Play商店已停止
- 10. Google Play商店篩選器
- 11. 實現類似谷歌Play商店的水平滾動視圖
- 12. Android Google Play商店自動提交.apk
- 13. 導航DOM樹(標籤類格)與jQuery
- 14. Play商店的導航欄應用程序要求
- 15. 自動發佈Beta版Android應用到Google Play商店
- 16. 帶有活動標籤的動態引導導航
- 17. 如何設計類似Play商店的Android應用程序
- 18. Google Play商店中的多個版本的應用程序
- 19. 沒有EasyTracker的Google Play商店營銷活動測量?
- 20. Google Play商店新的內容評級
- 21. Google Play商店的搜索API
- 22. Play商店中
- 23. Google移動SDK商業版
- 24. 如何獲得像導航視圖的Play商店?
- 25. 無法將APK與Google Play Services 6.1上傳到Play商店
- 26. 在Google Play商店中更改預生產應用的簽名
- 27. 的Android如何實現類似於谷歌Play商店
- 28. 確定的Android Play商店
- 29. Magento移動版商店切換邏輯
- 30. jQuery UI的標籤導航
什麼具有u嘗試到現在?給我們看一些代碼 – krishgopinath