我對Jason Butz的燈箱有問題。這裏是代碼:Bootstrap燈箱在鏈接點擊後未顯示燈箱
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A Bootstrap Blog Template">
<meta name="author" content="Billy Halim">
<title>Home</title>
<link rel="stylesheet" type="text/css" href="bootstrap-lightbox.css">
<script type="text/javascript" src="bootstrap-lightbox.js"></script>
</head>
<body>
<a data-toggle="lightbox" href="#demoLightbox">Open Lightbox</a>
<div id="demoLightbox" class="lightbox hide fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class='lightbox-content'>
<img src="image.png">
<div class="lightbox-caption"><p>Your caption here</p></div>
</div>
</div>
問題是有一個名爲「打開燈箱」的鏈接,也是圖像。圖像最初出現了。如果我點擊鏈接,它只能向下滾動指向圖像,它不會與燈箱一起出現。
任何解決方案?
你可以把源代碼放在JSfiddle中嗎? – DesignStudios
我對這個插件沒有經驗,但是因爲它被稱爲「Bootstrap lightbox」,所以我認爲你還必須包含Bootstrap。 – JJJ
@DesignStudios它是這裏:https://jsfiddle.net/r2hhkof2/ – billyhalim25