The Poisson’s Equation / vII

The Poisson’s Equation / vII 4K (3840 × 2160px) seamless loop, b&w, silent, 02’00”Alexandra Crouwers © 2021 Remake of The Poisson’s Equation, HD seamless loop, b/w, silent, 03’00”Alexandra Crouwers © 2014 In a desolate, … Lees Meer

Inertia

This short story accompanies the three channel video installation ‘Inertia’. Imagining this scene while producing the film functioned as a counterbalance to its rather bleak premise. “Extraordinary!” the doctor exclaimed as the … Lees Meer

De Cacaofabriek. Inertia.

28.12.2014 – 08.02.2015   From December 28 until February 8 the three channel video installation ‘Inertia‘ can be seen at the newly renovated arts-initiative De Nederlandsche Cacaofabriek in Helmond (‘Mouth of Hell’), … Lees Meer

Inertia: a new video installation

The new three channel video work INERTIA is both a homage to dystopian science fiction and dioramas – as a way to preserve a scene. The work is in black and white, … Lees Meer

The Poisson’s Equation [Inertia], 2014

Until october 5 the new videoloop ‘The Poisson’s Equation’, which also has a small part in the new installation ‘Inertia’ can be found during the BORG biannual event in Antwerp. It’s projected … Lees Meer

Van Stof tot Asse. De Ziener. Inertia.

Van Stof tot Asse. Triannual, Asse, B. 28.09.2014 – 02.11.2014

Upcoming: Avantgarde ist keine Strömung | BORG Bienale | Van Stof tot Asse Trienale

12.09.2014 – 07.09.2014 Avantgarde ist keine Strömung Two animations (Tamara, 2013 & One Short Story, 2005-2012-2014) screening at the ‘What If…’ programme of Avantgarde ist keine Strömung, Luro Kino and Cinématèque Leipzig … Lees Meer

hARt #125 | De kunstenaar als machine – Suse Weber

‘De Kunstenaar als Machine’, artikel over de solotentoonstelling van Suse Weber in de Base-Alpha galerie, Antwerpen. Klik op de foto om deze te vergroten.

// 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 } } });