我發現jQuery Colorbox的背景過渡非常「困難」。我找不到可指定自定義轉場的設置。 是否有可能爲Nyro Modal這樣的背景創建淡入淡出效果?jQuery Colorbox背景過渡效果?
回答
更新2與緩解作用
DEMO:http://so.devilmaycode.it/jquery-colorbox-background-transition-effect/
$('.example').colorbox({
//added to remove initial flickering
opacity : 0,
//use the onOpen event...
onOpen: function() {
// prevent Overlay from being displayed...
$('#cboxOverlay,#colorbox').css('visibility', 'hidden');
// make the overlay visible and
// re-add all it's original properties!
$('#cboxOverlay').css({
'visibility': 'visible',
'opacity': 0.9,
'cursor': 'pointer'
// execute our original animation on the overlay!
// animate it you can use here all the
// possible animate combination or plugin...
}).animate({
height: ['toggle', 'swing'],
opacity: 'toggle'
}, 1000 , function() {
$('#colorbox').css({
'visibility': 'visible'
}).fadeIn(1000);
});
}
});
你的例子看起來不錯,但是盒子的顯示不能等待背景顯示完成......我不認爲有一個有效的解決方案..? – Ropstah 2010-05-03 20:39:26
是可以的!看到更新! – 2010-05-03 20:46:42
歡迎你! ;-)不要忘記,你當然可以使用動畫而不是淡入淡出,反之亦然!也使用白嘴鴉的緩動插件! – 2010-05-03 20:56:25
- 1. JQuery背景過渡效果
- 2. jquery過渡效果
- 3. 用漂亮的過渡效果改變背景圖像 - jquery
- 4. Android背景過渡
- 5. 如何過渡不同的背景顏色,延遲效果
- 6. SK場景過渡背景
- 7. 重寫ColorBox打開/關閉過渡效果?
- 8. 過渡效果
- 9. 背景顏色過渡W/O JQuery的
- 10. CSS3 - 過渡效果幻燈片背景位置
- 11. jquery背景顏色效果
- 12. jQuery懸停與背景圖像過渡/緩解效應
- 13. CSS背景過渡 - 漸變
- 14. CSS過渡背景漸變
- 15. 多個背景過渡CSS3
- 16. 顏色過渡背景html
- 17. 過渡,而不是背景
- 18. Android過渡效果
- 19. AJAX過渡效果
- 20. 獲取IE8與jQuery的過渡效果
- 21. jquery hide div與CSS過渡效果
- 22. 滾動(頁)過渡效果
- 23. 過渡顏色與背景顏色
- 24. 馬賽克過渡效果
- 25. Swing效果jQuery動畫背景
- 26. 定時jQuery的背景視差效果
- 27. 過渡效果和意圖
- 28. HTML5視頻過渡效果
- 29. CSS3過渡效果問題
- 30. 活動過渡效果
看到它在行動! ;-) – 2010-05-03 20:33:13