我已經使用Bootstrap將HTML設計實現爲HTML(我第一次使用Bootstrap)。這是一個單頁網站,有4個部分(實際上是網頁)。每個部分都有多個頁面,我使用Bootstrap的tabbable類在「Tab」面板中顯示了這些頁面。它工作正常,我想爲每個標籤顯示其內容的滑動效果。意思是,如果某個部分包含3個標籤,並且我點擊第2個標籤,則下一個標籤的內容顯示爲滑動效果。是否只添加班級名稱? 謝謝。Bootstrap選項卡窗格向左滑動?
1
A
回答
1
我覺得這是它
<div class="container">
<div class="row">
<div id="tab-container" class="span6 offset1">
<ul class="nav nav-tabs" id="myTab">
<li class="active"><a href="#options" data-toggle="tab">Options</a></li>
<li class="disabled"><a href="#information" data-toggle="tab">Information</a></li>
<li class="disabled"><a href="#payment" data-toggle="tab">Payment</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="options">
<div class="well">
<form id="frmtype1" action="" name="frmtype1" method="post">
<fieldset>
<legend>Registration Options</legend>
<label for="Reg_type1" class="radio">
<input type="radio" name="Reg_type" id="Reg_type1" value="1"/>
Registering myself with credit card or bank account
</label>
<br>
<label for="Reg_type2" class="radio">
<input type="radio" name="Reg_type" id="Reg_type2" value="2"/>
Registering multiple people using credit card or bank account
</label>
<br>
<label for="Reg_type3" class="radio">
<input type="radio" name="Reg_type" id="Reg_type3" value="3"/>
Registering using a purchase order
</label>
</fieldset>
<button class="btn-demo btn" data-activate="#information">Continue</button>
<span class="help-inline" style="display:none;">Please choose an option</span>
</form>
</div><!--/.well -->
</div>
<div class="tab-pane" id="information">
<div class="well">
<form name="everything" id="frmtype2" action="" method="post"><p>Some content to give this pane a little bit of bulk</p>
<button class="btn-demo btn" data-activate="#payment" type="submit">Continue</button>
</form>
</div><!--/.well -->
</div>
<div class="tab-pane" id="payment">
<div class="well">
<p>Some content for the 3rd pane.</p>
</div><!-- .well -->
</div>
</div>
</div><!-- /.row -->
</div><!-- /#tab-container --> </div><!-- /.container -->
JAVASCRIPT
var selector;
var selectorID;
activateTab('#myTab a:first');
function activateTab(selectorID)
{
$(selectorID).tab('show')
.closest('.disabled').removeClass('disabled');
}
function deactivateTab(selector)
{
$(selector).off('click.twbstab')
.closest('li').addClass('disabled');
}
$('.btn-demo').on('click',function() {
selector = '#myTab a[href="'+$(this).data('activate')+'"]';
selectorID = $(selector).attr('href');
});
var val1 = $('#frmtype1').validate(
{
errorPlacement: function(error, element) {},
// prevent the standard error message from showing, rather you use the inline-text
rules: {
'Reg_type': {
required: true
}
}
});
// validate 1st form
$('#frmtype1').submit(function(e)
{
// validate the first page
if(val1.form()) {
$('.help-inline').hide();
activateTab(selector);
} else {
$('.help-inline').show();
}
return false;
});
// validate 2nd form
$('#frmtype2').submit(function(e)
{
// validate the second page
activateTab(selector);
return false;
});
// if 2nd or 3rd tab is clicked, validate as if the form was submitted
$('#myTab li:eq(1) a, #myTab li:eq(2) a').click(function(e)
{
selectorID = $(this).attr('href');
// validate the first page
if(val1.form()) {
$('.help-inline').hide();
activateTab(this);
$(selectorID).tab('show');
} else {
$('.help-inline').show();
}
return false;
});
// re-position all tab-panes, except the active pane, so that they are prepared for the slide effect
$(".tab-pane").css("position", "relative");
$(".tab-pane").not(".active").animate({
left: "1000px"
});
// perform slide effect
$('a[data-toggle="tab"]').on('show', function (e) {
lastPane = $(e.relatedTarget).attr('href');
$(lastPane).animate({left: "1000px"}, 300)
currPane = $(e.target).attr('href');
$(currPane).animate({left: "0px"}, 300);
});
+0
Upvoted - 乾淨。我要做的唯一編輯就是CSS,因爲隱藏的溢出不適用於該選擇器。使用'.tab-content {0} {0} {0}溢出:隱藏; }' – Illdapt
相關問題
- 1. Bootstrap中的選項卡窗格
- 2. 安卓選項卡窗格內的選項卡窗格?
- 3. 全景項向左或向右滑動
- 4. 滑動菜單選項卡
- 5. 滑動選項卡主機
- 6. 滑動選項卡 - NullPointerException - Toolbar.getTitle()
- 7. jQuery:向左滑動並向右滑動
- 8. 列表視圖項向左滑動並向右滑動?
- 9. 在選項卡窗格
- 10. 向右或向左滑動
- 11. 嚮導bootstrap返回當前選項卡
- 12. 向左或向右滑動並從左上角滑動更多
- 13. Bootstrap選項卡式窗格不起作用
- 14. Morris JS Chart Not Loading in Twitter Bootstrap選項卡窗格
- 15. 在小屏幕上隱藏twitter-bootstrap選項卡窗格
- 16. 獲取Bootstrap 3選項卡窗格使用TreeView
- 17. 滑動切換選項卡選擇
- 18. JavaFx:選項卡上的事件篩選器(選項卡窗格)
- 19. 在選項卡之間滑動時,指針事件被選項卡窗格上的按鈕捕獲
- 20. jquery選項卡自動滑動
- 21. API 21滑動選項卡活動
- 22. bootstrap選項卡作爲移動設備的選項卡
- 23. 使用ng2-bootstrap選項卡創建動態選項卡
- 24. 左右滑動隱藏的div,向右滑動活躍格
- 25. 實現Facebook風格的滑動菜單從右向左滑動
- 26. 鈦:左/右滑動窗口
- 27. jQuery從右向左滑動div將div滑出窗口
- 28. 引導滑動選項卡(不是選項卡內容)
- 29. 選項卡式窗格中的表格
- 30. Jssor MinDragOffsetToSlide選項僅適用於從右向左滑動
不要忘記,以紀念答案正確的,如果它是你在找什麼。 :) – equisde