0
當我點擊它時,我的Fancybox窗體將不會啓動。我相信我正確地從Fancybox複製了源代碼。我只是需要幫助弄清楚爲什麼它不會觸發。我更新了jquery,但仍然沒有幫助。我從here獲得源代碼;只需向下滾動一下,直到看到內聯和ajax以及其他內聯Lightbox的列表。我正在嘗試爲我的網站獲取「內嵌」燈箱,但它不會觸發。燈箱不會着火
的fancybox:http://fancyapps.com/fancybox/#examples(我試圖讓「內聯 - 自動檢測寬度/高度」接近網頁底部)
這裏是我的嘗試:
<!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>
<link rel="stylesheet" type="text/css" href="/js/fancybox-1.3.4/jquery.fancybox-1.3.4.css" media="screen" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="/js/fancybox-1.3.4/jquery.fancybox-1.3.4.js"></script>
<script type="text/javascript">
if ($(window).width() < 960) {
$('footer').css('padding', '20px');
}
</script>
</head>
<body>
<ul>
<li><a id="various1" href="#inline1" title="Lorem ipsum dolor sit amet">Inline - auto detect width/height</a></li>
</ul>
</body>
</html>
我不太明白。我已經在代碼中有「jquery.fancybox-1.3.4.js」。 – user2680614
首先,您需要在jquery.js之後添加jquery.fancybox-1.3.4.js ** –
您已經說過了。我第一次不明白這一點。 – user2680614