Hello to all coders of quality and others!
I am using a jquery script (Author: Marco Kuiper - www.marcofolio.net) that randomly places images within a defined space. Using a mouse the images can be dragged around on the screen, then clicked to enlarge.
The problem is when the page is viewed on an iphone, the images cannot be dragged so if any images are overlapping they cannot be easily tapped and enlarged. My idea is to create an array of random coordinates that are at least the width of each image away from each other while still fitting with the confines of the enclosing div. The images are all the same dimensions. Once that array is created, use it's values to position the images.
Here's the current script that places the images:
$(".polaroid").each
(function ()
{
var tempVal = Math.round(Math.random());
if(tempVal == 1)
{ var rotDegrees = randomXToY(330, 360); } // rotate left
else
{ var rotDegrees = randomXToY(0, 30); } // rotate right
var position = $(this).parent().offset();
var wiw = $(this).parent().width(); // width of div enclosing object
var wih = $(this).parent().height(); // heiht of div enclosing object
var leftpos = Math.random()*(wiw - $(this).width()) + position.left;
var toppos = Math.random()*(wih - $(this).height()) + position.top;
var cssObj =
{
'left' : leftpos,
'top' : toppos,
'-webkit-transform' : 'rotate('+ rotDegrees +'deg)', // safari only
'-moz-transform' : 'rotate('+ rotDegrees +'deg)', // firefox only
'tranform' : 'rotate('+ rotDegrees +'deg)' // if CSS3 is standard
};
$(this).css(cssObj);
}
);
My scripting skills are not quite sufficient for this, so any help would be appreciated.
Thanks!