I have a gallery in which images endure a rough treatment: they are sized and positioned randomly in a container. Also they are rounded and change size over a mouseclick.. be reassured, it's actually much simpler than it sounds.
Okay, here's a (cute) example of what I mean: http://dl.dropbox.com/u/5550635/Test%20rounded%20gallery/example2.htm
My problem is pretty obvious with the example, images are overlapping most of the time.
Same thing for when you click on one of the images, the other ones go down, and should form a line without overlapping, with maybe a minimum 5 pixels margin between them.
You can see the commented code on the example page.
The CSS is pretty simple:
.project { //class given to the div containing the images
border-radius: 100px;
width: 200px;
height: 200px;
overflow: hidden;
}
#space { //container
width: 550px;
height: 700px;
background: #ccc;
border: 2px solid blue;
}
.parent_project { //parent of the .project div, position absolutely (to fix a problem between position and border-radius)
position: absolute;
}
I've looked around the web for a Javascript solution to prevent overlapping images, but I couldn't find one that fits my specificities. If you just take a look at my problem and share a bit of your science, i'd be very grateful. Thanks!