1
私は自分のデータベースから画像を読み込み、それをクリックして "ポップアップウィンドウ"に表示させる方法を理解しようとしていました。今のところ私はすべての画像をロードして、すべての画像の詳細を表示するためにそれらをクリックすることができますが、私は画像がより大きく表示されるようにしたいと思います。私はw3schoolsに関するチュートリアルを見つけましたが、それは最初の写真にしか表示されません。Css image modal with MySQLデータベース
データベースから読み込まれたすべての画像に対して、これをどのように行うことができますか?
はここCODE OFデータベース
<?php
$sql = "select id, image from items order by id desc";
$result = mysqli_query($con, $sql);
while($row = mysqli_fetch_array($result)){
$image = $row['image'];
$id = $row['id'];
?>
<div class="img">
<a href="view_product.php?id=<?php echo $id; ?>">
<img src="items/<?php echo $image; ?>">
</a>
</div>
<?php
}
?>
UPDATEからすべての画像を読み取るために私のコードです:
<?php
$sql = "select id, image from items order by id desc";
$result = mysqli_query($con, $sql);
while($row = mysqli_fetch_array($result)){
$image = $row['image'];
$id = $row['id'];
?>
<img id="myImg" src="items/<?php echo $image; ?>" alt="<a href='view_product.php?id=<?php echo $id; ?>">
<!-- The Modal -->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
<div id="caption"></div>
</div>
<?php
}
?>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
</script>
これまで達成したことを示すコードを投稿してください。 – r0xette
あなたのコードはあなたに各画像のdivを与えます。あなたの問題は何ですか? –
おそらく私はそれが私のCSSコードだと思うので、私はもう一度それをチェックしなければならないでしょう – Gramas