Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 45 additions & 8 deletions events.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h2>Events</h2>
<section class="bottom-margin">
<div>
<a href="images/events/2024_7th_workshop_group_photo_ORIGINAL.jpg" target="_blank">
<img class="image" src="images/events/2024_7th_workshop_group_photo.jpg" alt="Workshop Group Photo" />
<img class="image" src="images/events/2024_7th_workshop_group_photo_thumb.jpg" data-src="images/events/2024_7th_workshop_group_photo.jpg" alt="Workshop Group Photo" loading="lazy" />
</a>
</div>
<div>
Expand All @@ -47,7 +47,7 @@ <h5>30 September - 4 October 2024 @ San Diego Supercomputer Center, US</h5>
<section class="bottom-margin">
<div>
<a href="images/events/2023_Dirac_RucioWS_groupphoto_ORIGINAL.jpg" target="_blank">
<img class="image" src="images/events/2023_Dirac_RucioWS_groupphoto.jpg" alt="Workshop Group Photo" />
<img class="image" src="images/events/2023_Dirac_RucioWS_groupphoto_thumb.jpg" data-src="images/events/2023_Dirac_RucioWS_groupphoto.jpg" alt="Workshop Group Photo" loading="lazy" />
</a>
</div>
<div>
Expand All @@ -64,7 +64,7 @@ <h5>16 October - 20 October 2023 @ KEK, Tsukuba, JP</h5>
<section class="bottom-margin">
<div>
<a href="images/events/2022_5th_workshop_group_photo_ORIGINAL.jpg" target="_blank">
<img class="image" src="images/events/2022_5th_workshop_group_photo.jpg" alt="Workshop Group Photo" />
<img class="image" src="images/events/2022_5th_workshop_group_photo_thumb.jpg" data-src="images/events/2022_5th_workshop_group_photo.jpg" alt="Workshop Group Photo" loading="lazy" />
</a>
</div>
<div>
Expand All @@ -81,7 +81,7 @@ <h5>10 November - 11 November 2022 @ Lancaster University, UK</h5>
<section class="bottom-margin">
<div>
<a href="images/events/2021_4th_workshop_group_photo_ORIGINAL.png" target="_blank">
<img class="image" src="images/events/2021_4th_workshop_group_photo.png" alt="Workshop Group Photo" />
<img class="image" src="images/events/2021_4th_workshop_group_photo_thumb.jpg" data-src="images/events/2021_4th_workshop_group_photo.jpg" alt="Workshop Group Photo" loading="lazy" />
</a>
</div>
<div>
Expand All @@ -101,7 +101,7 @@ <h5>28 September - 30 September 2021 @ Virtual</h5>
<section class="bottom-margin">
<div>
<a href="images/events/2020_3rd_rucio_workshop_ORIGINAL.png" target="_blank">
<img class="image" src="images/events/2020_3rd_rucio_workshop.png" alt="Workshop Group Photo" />
<img class="image" src="images/events/2020_3rd_rucio_workshop_thumb.jpg" data-src="images/events/2020_3rd_rucio_workshop.jpg" alt="Workshop Group Photo" loading="lazy" />
</a>
</div>
<div>
Expand All @@ -118,7 +118,7 @@ <h5>10 March - 12 March 2020 @ Fermilab, USA</h5>
<section class="bottom-margin">
<div>
<a href="images/events/2019_second_coding_camp_ORIGINAL.png" target="_blank">
<img class="image" src="images/events/2019_second_coding_camp.png" alt="Workshop Group Photo" />
<img class="image" src="images/events/2019_second_coding_camp_thumb.jpg" data-src="images/events/2019_second_coding_camp.jpg" alt="Workshop Group Photo" loading="lazy" />
</a>
</div>
<div>
Expand All @@ -135,7 +135,7 @@ <h5>15-17 October 2019 @ CERN</h5>
<section class="bottom-margin">
<div>
<a href="images/events/2019_second_rucio_workshop_ORIGINAL.jpg" target="_blank">
<img class="image" src="images/events/2019_second_rucio_workshop.jpg" alt="Workshop Group Photo" />
<img class="image" src="images/events/2019_second_rucio_workshop_thumb.jpg" data-src="images/events/2019_second_rucio_workshop.jpg" alt="Workshop Group Photo" loading="lazy" />
</a>
</div>
<div>
Expand All @@ -153,7 +153,7 @@ <h5>28 Feburary - 1 March 2019 @ Oslo, Norway</h5>
<section class="bottom-margin">
<div>
<a href="images/events/2018_first_coding_camp_ORIGINAL.jpg" target="_blank">
<img class="image" src="images/events/2018_first_coding_camp.jpg" alt="Workshop Group Photo" />
<img class="image" src="images/events/2018_first_coding_camp_thumb.jpg" data-src="images/events/2018_first_coding_camp.jpg" alt="Workshop Group Photo" loading="lazy" />
</a>
</div>
<div>
Expand Down Expand Up @@ -202,6 +202,43 @@ <h5>1-2 March 2018 @ CERN</h5>
<script src="assets/js/footer.js"></script>
<script src="assets/js/cta.js"></script>
<script src="assets/js/scripts.js"></script>

<!-- Progressive Image Loading -->
<script>
document.addEventListener('DOMContentLoaded', function() {
const images = document.querySelectorAll('img[data-src]');

const imageObserver = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const img = entry.target;
const highQualitySrc = img.getAttribute('data-src');

// Create a new image to preload the high-quality version
const highQualityImg = new Image();
highQualityImg.onload = function() {
// Smoothly transition to high-quality image
img.style.transition = 'opacity 0.3s ease-in-out';
img.style.opacity = '0.8';
setTimeout(() => {
img.src = highQualitySrc;
img.style.opacity = '1';
img.removeAttribute('data-src');
}, 150);
};
highQualityImg.src = highQualitySrc;

observer.unobserve(img);
}
});
}, {
rootMargin: '50px 0px',
threshold: 0.1
});

images.forEach(img => imageObserver.observe(img));
});
</script>

</body>

Expand Down
Binary file removed images/events/2018_first_coding_camp.jpg
Binary file not shown.
Binary file added images/events/2018_first_coding_camp_thumb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/events/2019_second_coding_camp.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/events/2019_second_coding_camp.png
Binary file not shown.
Binary file added images/events/2019_second_coding_camp_thumb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/events/2019_second_rucio_workshop.jpg
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/events/2020_3rd_rucio_workshop.png
Binary file not shown.
Binary file added images/events/2020_3rd_rucio_workshop_thumb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/events/2021_4th_workshop_group_photo.png
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/events/2022_5th_workshop_group_photo.jpg
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/events/2023_Dirac_RucioWS_groupphoto.jpg
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/events/2024_7th_workshop_group_photo.jpg
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/events/2024_7th_workshop_poster_thumb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.