magnific popup
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Magnific Popup Örnek</title>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Magnific Popup CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/magnific-popup/dist/magnific-popup.css">
<!-- Magnific Popup JS -->
<script src="https://cdn.jsdelivr.net/npm/magnific-popup/dist/jquery.magnific-popup.min.js"></script>
<style>
body { font-family: Arial, sans-serif; padding: 50px; }
.gallery img { width: 150px; margin: 10px; cursor: pointer; }
</style>
</head>
<body>
<h1>Magnific Popup Galeri Örneği</h1>
<div class="gallery">
<a href="https://placehold.jp/150x150.png" title="Resim 1">
<img src="https://placehold.jp/150x150.png" alt="Resim 1">
</a>
<a href="https://placehold.jp/150x150.png" title="Resim 2">
<img src="https://placehold.jp/150x150.png" alt="Resim 2">
</a>
<a href="https://placehold.jp/150x150.png" title="Resim 3">
<img src="https://placehold.jp/150x150.png" alt="Resim 3">
</a>
</div>
<script>
$(document).ready(function() {
$('.gallery').magnificPopup({
delegate: 'a', // hangi elemente tıklanacak
type: 'image',
gallery: {
enabled: true // galeri modunu aç
}
});
});
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Magnific Popup Örnek</title>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Magnific Popup CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/magnific-popup/dist/magnific-popup.css">
<!-- Magnific Popup JS -->
<script src="https://cdn.jsdelivr.net/npm/magnific-popup/dist/jquery.magnific-popup.min.js"></script>
<style>
body { font-family: Arial, sans-serif; padding: 50px; }
.gallery img { width: 150px; margin: 10px; cursor: pointer; }
</style>
</head>
<body>
<h1>Magnific Popup Galeri Örneği</h1>
<div class="gallery">
<a href="https://placehold.jp/150x150.png" title="Resim 1">
<img src="https://placehold.jp/150x150.png" alt="Resim 1">
</a>
<a href="https://placehold.jp/150x150.png" title="Resim 2">
<img src="https://placehold.jp/150x150.png" alt="Resim 2">
</a>
<a href="https://placehold.jp/150x150.png" title="Resim 3">
<img src="https://placehold.jp/150x150.png" alt="Resim 3">
</a>
</div>
<script>
$(document).ready(function() {
$('.gallery').magnificPopup({
delegate: 'a', // hangi elemente tıklanacak
type: 'image',
gallery: {
enabled: true // galeri modunu aç
}
});
});
</script>
</body>
</html>