Questions tagged «fancybox»

1
fancybox-d.onCleanup不是函数
这让我发疯。我创建了一个简单的测试页。 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="../admin/UI/js/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="admin/fancybox/jquery.fancybox-1.3.4.pack.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#foo").fancybox({ 'autoDimensions': false, 'width' : '750', 'height' : '90%', 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'speedIn' : 600, 'speedOut' : 200, 'overlayShow' : true, …
136 fancybox 

4
Fancybox不适用于jQuery v1.9.0 [f.browser未定义/无法读取属性'msie']
Fancybox打破了新的jQuery v1.9.0。 它同时影响Fancybox v1.3.4和更低版本以及-v2.1.3和更低版本。 显示的错误是: v1.3.4: Timestamp: 15/01/2013 10:03:28 AM Error: TypeError: b.browser is undefined Source File: ...fancybox/jquery.fancybox-1.3.4.pack.js Line: 18 ...其他错误 Uncaught TypeError: Cannot read property 'msie' of undefined jquery.fancybox-1.3.4.pack.js:18 Uncaught TypeError: Object [object Object] has no method 'fancybox' 在v2.1.3中: Timestamp: 15/01/2013 10:09:58 AM Error: TypeError: $.browser is undefined Source …


3
使用FancyBox加载内联内容
好吧,我只是写这篇文章,希望对可能遇到同一问题的其他人有所帮助。 供应商网站上的示例有些模糊,我假设了以下情形。 您具有href某些内容的n链接#id。 <a href="#content-div" class="fancybox">Open Example</a> 并且您有一个div来保存该内容。 <div id="content-div" style="display: none">Some content here</div> 然后,您只需通过1线运行Fancybox。 $(".fancybox").fancybox(); 自然,您会认为Fancybox将复制内容并将其更改display: none为display: block,一切都会好起来的。 但这不会发生。 它仍然会加载内容,但是内容是隐藏的,并且您有一个空白的Fancybox。*cry*
68 jquery  html  css  fancybox 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.