Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am looking for a jquery plugin that does the following: let say i have a div container and 5 images that i want to display inside the div. i want the images to be randomly located inside the div without overriding each other using the css position relative attribute. for example:

<div class="floating_are" >
<img src="..." style="position:relative; top:5px; left:3px" />
<img src="..." style="position:relative; top:50px; left:30px" />
<img src="..." style="position:relative; top:80px; left:27px" />
<img src="..." style="position:relative; top:111px; left:92px" />
</div>

the output should be a div with 5 images randomly spread inside. now, before i roll my sleeves and write it, i was wondering if any of you know of an existing plugin ?

share|improve this question
Could you make a jsFiddle demo of what you have so far? Because I'm pretty sure you meant to have position: relative on only the outer div, and position: absolute on the inner divs. – thirtydot Jun 13 '11 at 20:02
well, as far as code goes, i have nothing, i am just trying to avoid writing something that was already written. regarding the position of the outer div, it might be relative, it can also be fixed or anything else possible. cant force it to a certain positioning. regarding the inner div , what inner div ? you can just copy my code and paste it in the jsfiddle html section and see what i mean. only the html that you see the the result of my plugin, something like this: $('div.floating_are').spread_img(); will randomly allocate positions to the inner images of div.floating_are – Oded Jun 13 '11 at 20:28
I'm merely talking about this: css-tricks.com/absolute-positioning-inside-relative-positioning – thirtydot Jun 13 '11 at 20:30

1 Answer

This might interest you Scatter Gallery

share|improve this answer
This seems cool but i think the key words in the question are: "located inside the div without overriding each other". Collision/superposition is not the easiest thing to program :/ – Marino Šimić Jun 18 '11 at 4:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.