Broeltoren Kortrijk. Paradise Lost Paradise.

Overview ‘DaHiL’ [Dig a Hole into Light] at the Paradise Lost Paradise exhibition/Roelant Savery tribute in the Broeltoren in Kortrijk. Participating artists: Honoré d’ O (B), Bernd Trasberger (Dui), Nadia Naveau (B), … Lees Meer

Invitation | Base-Alpha Gallery. Group Show. 20.01.11 – 05.03.11

Group show ‘What you’ve saved during the Sales you can spend extra at Base-Alpha’ Rachel Agnew, Alexandra Crouwers, Geoffrey De Beer, Lode Geens, Frederik Heyman, Han Hoogerbrugge, Lisa Jeannin & Rolf Schuurmans, … Lees Meer

Fax Project at the Torrance Art Museum

The Torrance Art Museum shows a travelling exhibition project in co-operation with Independent Curators International, NYC the FAX-project, which is curated by João Ribas of the Drawing Center. I’m participating with 4 … Lees Meer

Breda Photo. NBKS / BKKC. Onwerkelijke Schoonheid.

In de tentoonstellingsruimte van de Nieuwe Brabantse Kunst Stichting (NBKS) is tijdens Breda Photo 2005 werk te zien van drie kunstenaars: Alexandra Crouwers, Marloes Hoogenstraaten en Dani Smulders. Ze maken ieder op … Lees Meer

Netwerk. Sugar-free.

01.05.2005 – 04.06.2005 Alexandra Crouwers, Evert Defrancq, Nick Ervinck, Christophe Floré, Peter Morrens, Rebecca Sakoun, Leopold van de Ven, Anne Vernimmen, Ane Vester, Wharton / Leib, Judith Witteman    

1 2
// script.js document.addEventListener("DOMContentLoaded", function() { // Check if the body has the specific page class if (document.body.classList.contains('page-id-400605')) { const container = document.getElementById("container"); // Function to create and position images function createImage(src) { const img = document.createElement("img"); img.src = src; img.classList.add("image"); // Set random width and rotation const randomWidth = Math.random() * (150 - 50) + 50; // Random width between 50px and 150px const randomRotation = Math.random() * 30 - 15; // Random rotation between -15deg and 15deg img.style.width = `${randomWidth}px`; img.style.transform = `rotate(${randomRotation}deg)`; // Random position within the container img.style.top = Math.random() * (container.clientHeight - randomWidth) + 'px'; img.style.left = Math.random() * (container.clientWidth - randomWidth) + 'px'; img.draggable = true; // Event listeners for dragging img.addEventListener("dragstart", function(e) { e.dataTransfer.setData("text/plain", null); // For Firefox compatibility img.style.transition = 'none'; // Disable transition during drag }); img.addEventListener("dragend", function() { img.style.transition = 'transform 0.1s'; // Re-enable transition after drag }); img.addEventListener("drag", function(e) { const x = e.clientX - container.getBoundingClientRect().left - randomWidth / 2; // Adjust for image width const y = e.clientY - container.getBoundingClientRect().top - randomWidth / 2; // Adjust for image height img.style.transform = `translate(${x}px, ${y}px) rotate(${randomRotation}deg)`; // Keep rotation }); container.appendChild(img); } // Load images from a specified folder const imageFolder = 'https://yourwebsite.com/path/to/your/images/'; // Update with your image folder path let i = 1; // Initialize the counter while (true) { // Infinite loop to keep trying to load images const imageUrl = `${imageFolder}image${i}.jpg`; // Adjust this to match your image naming convention const img = new Image(); img.src = imageUrl; // Check if the image exists before creating it img.onload = function() { createImage(imageUrl); }; img.onerror = function() { console.log(`Image ${imageUrl} does not exist. Stopping further attempts.`); break; // Stop loading more images if one doesn't exist }; i++; // Increment the counter } } });