我想在colorbox中顯示圖片div和類似按鈕的div。圖片div和類似的按鈕div都在其他頁面。我想將這些div放在不同於頁面的colorbox中。我怎樣才能做到這一點 ?在colorbox中顯示多個div
0
A
回答
1
$(document).ready(function(){
$('#somebutton').click(function(){
$.colorbox.init();
$('#divwrapper').show();
$(this).colorbox({
inline:true,
href:'#divwrapper',
onLoad:function(){
//do something if you want here
},
onClosed:function(){
$('#divwrapper').hide();
$.colorbox.remove();
}
});
});
//html side
<div id="divwrapper" style="display:none;">
<div>Your image here</div>
<div>Your like button here</div>
</div>
});
+0
問題在於圖像和類似按鈕不在啓動彩盒的相同頁面中。 –
+0
我不得不用照片創建一個新的div,並且喜歡colorbox的按鈕。 –
相關問題
- 1. 如何以幻燈片形式在Colorbox中顯示多個div?
- 2. 在colorbox中顯示一個php表單
- 3. 使用Colorbox顯示div的問題
- 4. Colorbox - 如何僅顯示特定的DIV
- 5. 使用jquery colorbox取消隱藏DIV以在colorbox中顯示密碼框
- 6. 在CSS中如何顯示多個div?
- 7. Rebox未顯示colorbox
- 8. 顯示分度,多個div
- 9. 顯示隱藏多個div
- 10. Jquery Cycle - 顯示多個div
- 11. 在Colorbox中滾動div
- 12. 使用多個div顯示div onClick
- 13. 在懸停時顯示多個div
- 14. 顯示/隱藏多個div與多選
- 15. Colorbox中的多個視頻
- 16. 在div中顯示許多圖像
- 17. 如何在多個div中顯示隱藏單個區域
- 18. 在多個元素上顯示隱藏多個div
- 19. 在colorbox裏面顯示QR碼?
- 20. Colorbox顯示在iframe之間加載GIF
- 21. 在頁面頂部顯示colorbox
- 22. 使用jquery colorbox顯示div使用按鈕
- 23. jQuery的淡入()應該只顯示一個DIV,正顯示出多個div
- 24. JQuery在多個div行上顯示本地div
- 25. 顯示並在一個div
- 26. 自動顯示和隱藏多個div
- 27. 管理多個顯示/隱藏div
- 28. foreach和hide /顯示多個div
- 29. 使用jquery突出顯示多個div
- 30. jquery - 多個div不會顯示()?
請問您能澄清一下您要做的更多嗎?也許放一個截圖或兩個,也是你已經嘗試迄今爲止在jsbin.com或jsfiddle.net上的一個例子 –
@Moin Zaman Like facebook –
@Moin Zaman我在一頁創建了縮略圖,並顯示原始圖片,如果縮略圖被點擊。我想包裝照片div和像按鈕div在一個彩盒。如果我關閉了彩色框,我想保留在縮略圖頁面中。這是基本的想法(我認爲Facebook也以這種方式顯示照片)。但我無法弄清楚這個機制。 –