Example Of One我想創建一個彈出窗口,當用戶點擊彈出窗口中的按鈕時,它將他們帶到一個全新的彈出窗口。我似乎無法找到正確的HTML腳本。所以我想知道如果有人有任何想法!試圖創建一個J查詢彈出重定向到另一個彈出
回答
還..你可以用自定義模式div
這裏不需要任何其他的插件也充滿風格的定製你想要的方式和做可以包括任何類型的內容..如下面的代碼:JSFIDDLE
$('.modal a').on('click', function (evt) {
evt.preventDefault();
});
$('.open-modal').on('click', function (evt) {
evt.preventDefault();
$('#overlay').show();
});
$('.modal-close').on('click', function() {
$('#overlay').hide();
$('#modal1').show();
$('#modal2').hide();
});
$('#modal2').hide();
$('#pg1btn1').on('click', function() {
$('#modal2').show();
$('#modal1').hide();
});
$('#pg2btn1').on('click', function() {
$('#modal1').show();
$('#modal2').hide();
});
$('#pg2btn2').on('click', function() {
$('#overlay').hide();
$('#modal1').show();
$('#modal2').hide();
});
#overlay {
display:block;
width:100%;
height:100%;
z-index:100;
position:fixed;
top:0;
left:0;
background-color:rgba(0, 0, 0, 0.5);
font-family:verdana, sans-serif;
}
.modal {
display:block;
width:400px;
height:250px;
position:fixed;
top:calc(50% - 100px);
left:calc(50% - 200px);
background-color:#EEE;
border:2px #AAA solid;
border-radius:5px;
box-shadow:0 1px 3px rgba(0, 0, 0, 0.4);
font-size:24px;
padding:5px;
}
.modal-head {
display:block;
height:30px;
padding:5px;
font-weight:bold;
text-align:right;
}
.modal-head a {
text-decoration:none;
display:inline-block;
width:15px;
height:15px;
margin-right:5px
}
.modal-action {
display:block;
background-color:#DDD;
width:60px;
position:absolute;
left:calc(50% - 30px);
margin-top:10px;
bottom:10px;
padding:5px 10px;
border:2px #CCC solid;
border-radius:5px;
text-align:center;
cursor:pointer;
text-decoration:none;
}
.modal-action:hover {
background-color:#BBB;
border-color:#999;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div>Crema crema chicory viennese sugar medium, rich mazagran americano aftertaste cinnamon rich. Filter, frappuccino that decaffeinated siphon caffeine so sit dripper. French press shop carajillo cappuccino mocha medium white lungo.</div>
<div><a href="" class="open-modal">Activate Modal</a>
</div>
<div id="overlay">
<div id="modal1" class="modal">
<div class="modal-head"><a href="" class="modal-close">x</a>
</div>
<div class="modal-body"><strong>Page ONE: </strong>Ristretto spoon galão bar, lungo siphon whipped variety seasonal half and half. Dripper plunger pot saucer crema extraction filter arabica. <a href="" id="pg1btn1" class="modal-action">Next</a>
</div>
</div>
<div id="modal2" class="modal">
<div class="modal-head"><a href="" class="modal-close">x</a>
</div>
<div class="modal-body"><strong>Page TWO: </strong>Roast, steamed, robust, chicory qui kopi-luwak, cappuccino, roast half and half cappuccino aromatic variety. Rich a mazagran qui cup barista chicory. <a href="" id="pg2btn1" class="modal-action" style="left:100px">Prev</a><a href="" id="pg2btn2" class="modal-action" style="left:250px;border-color:red;color:red;">Close</a>
</div>
</div>
</div>
This Works!我將使用這個,但增加一些額外的樣式。 –
有了基礎和嵌套模態,這是可能的。
$(document).foundation();
<script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script>
<link rel="stylesheet" href="http://cdn.foundation5.zurb.com/foundation.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js" type="text/javascript"></script>
<script src="http://cdn.foundation5.zurb.com/foundation.js" type="text/javascript"></script>
<a href="#" data-reveal-id="firstModal" class="radius button">Example Modal…</a>
<!-- Reveal Modals begin -->
<div id="firstModal" class="reveal-modal" data-reveal>
<h2>This is a modal.</h2>
<p>Reveal makes these very easy to summon and dismiss. The close button is simply an anchor with a unicode character icon and a class of <code>close-reveal-modal</code>. Clicking anywhere outside the modal will also dismiss it.</p>
<p>Finally, if your modal summons another Reveal modal, the plugin will handle that for you gracefully.</p>
<p><a href="#" data-reveal-id="secondModal" class="secondary button">Second Modal...</a></p>
<a class="close-reveal-modal">×</a>
</div>
<div id="secondModal" class="reveal-modal" data-reveal>
<h2>This is a second modal.</h2>
<p>See? It just slides into place after the other first modal. Very handy when you need subsequent dialogs, or when a modal option impacts or requires another decision.</p>
<a class="close-reveal-modal">×</a>
</div>
非常感謝!幫助! –
@PraveenK不客氣的朋友......很抱歉,爲了完成這項工作,我們付出了很多努力。 ':)' –
我使用了上面的代碼。但是,當我嘗試點擊示例模式...什麼都沒有發生 –
- 1. 如何在另一個彈出窗口內創建彈出框
- 2. 創建一個彈出
- 3. Javascript:通過彈出窗口重定向到另一個網頁
- 4. Javascript:通過彈出框重定向到另一個網站
- 5. 重定向到相同的視圖,這是一個彈出框
- 6. 從另一個彈出窗口打開一個彈出窗口
- 7. QDialog彈出另一個QDialog
- 8. 使用另一個JPanel的JPanel創建一個彈出窗口
- 9. 創建一個圖像查看器彈出下一個和上一個按鈕
- 10. 如何從一個彈出切換到另一個彈出硒的webdriver
- 11. 試圖創建一個帶圓角的彈出式UITableView
- 12. 試圖創建一個僅用於CSS的彈出效果
- 13. 試圖創建一個角度彈出窗口
- 14. JAVA棧中彈出錯誤,試圖創建一個撤消
- 15. 創建一個JQuery菜單彈出
- 16. 創建一個疊加彈出框
- 17. Process.Start創建一個彈出窗口
- 18. 創建後彈出一個星期
- 19. 的Xcode:創建一個彈出的UIViewController
- 20. 創建一個彈出警報
- 21. 創建一個ExtJS彈出窗體?
- 22. 創建一個彈出式滑塊
- 23. 試圖做一個彈出JavaScript類
- 24. 關閉彈出窗口並重定向到另一頁
- 25. 重定向到DisplayAlert彈出窗口中的另一頁Xamarin.Form
- 26. 彈出一個UItabBar
- 27. 彈出一個NavigationController
- 28. 即使在重定向到另一個頁面後也顯示彈出窗口
- 29. 重定向到另一個頁面時,點擊jQuery的彈出式按鈕
- 30. 如何重定向到ASP.NET MVC上的另一個彈出窗口
popup在彈出式框中或模式? –
模式看起來像 –
上面的圖像 –