그림 축소판 그림을 클릭하면 나타나는 회전 목마가있는 모달이 있습니다. 문제는 그림 사이를 탐색하는 데 사용되는 화살표를 클릭 할 때마다 모달이 닫힙니다. 이미지는 <div class="carousel-inner">
가앵커 클릭 및 회전식 컨트롤로 모달을 닫습니다.
$(document).ready(function() {
$('#myTab a').click(function (e) {
e.preventDefault()
$(this).tab('show')
})
/* activate the carousel */
$("#modal-carousel").carousel({interval:false});
/* change modal title when slide changes */
$("#modal-carousel").on("slid.bs.carousel", function() {
$(".modal-title")
.html($(this)
.find(".active img")
.attr("title"));
});
/* when clicking a thumbnail */
$(".thumbnail").click(function() {
var content = $(".carousel-inner");
var title = $(".modal-title");
content.empty();
title.empty();
var id = this.id;
var repo = $("#img-repo .carousel-item");
var repoCopy = repo.filter("#" + id).clone();
var active = repoCopy.first();
active.addClass("active");
title.html(active.find("img").attr("title"));
content.append(repoCopy);
// show the modal
$("#modal-gallery").modal("show");
});
});
몇 일 전에
HTML
<div class="modal fade" id="modal-gallery" role="dialog">
<div class="modal-dialog modal-lg">
<div>
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div>
<div id="modal-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
</div>
<a class="carousel-control-prev left" href="#modal-carousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next right" href="#modal-carousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
자바 스크립트 비어있는 이유는 마법처럼 일을하고 모르는의 데이터베이스에서 동적으로로드 나는 그것을 깰 무엇을 했는가.
감사
작동하는 바이올렛을 만듭니다 –
모든 것이 작동하지 않기 때문에 작동하는 바이올린을 만들 수 없습니다. [링크] (http://mebelbox.bg)로 이동하여 탐색 메뉴에서 두 번째 항목을 클릭하십시오. 거기에서보실 수 있습니다. –
당신은 모달 작업하지만 화살표를 클릭 할 때 모달이 사라진다 고 말하면 작동하지만 작동 스 니펫을 게시하지 않으면 해결하기 어려운 문제가 있습니다. –