Jump to content

Layout similar to clipboard


maxkinn

Recommended Posts

Hi

 

I have upload image script. where user can upload their images. The width and height of the images are not limited. Users can upload any kind of images. Now the problem I am facing is if users upload large images and small images, the layout get scattered.

 

So I decided to do layout similar to

http://sergey.fantoon.com/clipboard/funny.html

 

here they have aligned the images very nicely. They looks prety aligned in the way of rows and columns. they are not scattered. So I would like to get exact same layout.

 

Any body know what scripts can help me to achieve this?

 

your help will be aprreciated.

 

thanks

Link to comment
https://forums.phpfreaks.com/topic/253436-layout-similar-to-clipboard/
Share on other sites

  • 3 weeks later...

I'd say this is a Javascript question. The best you could do in HTML/CSS would be to hard code those boxes which would kind of defeat the purpose of allowing the user to upload images of any size or create a fluid system with all images within a div of certain width floating left. It will look messy but might be a start.

 

CSS:

 

#imagewrapper {

width: 800px;

overflow: auto;

}

 

.image {

float:left;

}

 

There may be a JQuery plugin that could help as well. Check here for some examples: http://www.1stwebdesigner.com/css/fresh-jquery-image-gallery-display-solutions/

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.