The SA Government must do more to boost the supply of affordable homes. We can’t wait for private developers to fix the problem.
We’re calling on the South Australian Government to rebuild the housing trust and intervene to make the housing market fairer.
document.addEventListener(“DOMContentLoaded”, function() {
const video = document.getElementById(“scrollVideo”);
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
video.play();
} else {
video.pause();
}
});
}, { threshold: 0.5 }); // Starts playing when 50% of the video is visible
observer.observe(video);
});