It is currently Sat Aug 08, 2026 6:49 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 1 post ] 
Author Message
 Post subject: Free Photo Gallery Web Layout
PostPosted: Sun Apr 24, 2011 8:57 pm  (#1) 
Offline
Former Member
User avatar

Joined: Nov 17, 2010
Posts: 618
Location: Rockford, IL
Do no longer available!

Attachment:
photogalleryweblayout.png
photogalleryweblayout.png [ 427.33 KiB | Viewed 4201 times ]

All the divs should all fade in only if you're using -webkit meaning if you're a safari, or chrome user. (I could of easily done it in JQuery, however I wanted to make this entirely in CSS3, except you can't click and drag divs in CSS3 yet, so that was the only thing I used JQuery for)

The background was made in Gimp. Everything else was done in code, besides the images in the divs, and thoughs you can change yourself.

Also feel free to adjust the CSS however you want, like positioning adding more than 10 images, etc:

Attachment:
photogallery-weblayout.zip [183.63 KiB]
Downloaded 350 times


NOTE: If you want to takeout the fade in animation you need to takout these codes inside the style.css file.

The code below is located in div.
   -webkit-animation-name:fade-in;
   -webkit-animation-duration:2s;
   -webkit-animation-timing-function:ease-in;
   -webkit-animation-iteration-count:1;


The code below is located in galleryline.
   -webkit-animation-name:fade-in;
   -webkit-animation-duration:1s;
   -webkit-animation-timing-function:ease-in;
   -webkit-animation-iteration-count:1;


Also on the very top of the CSS document you'll need to remove this code,
@-webkit-keyframes fade-in {
   0% {
      opacity: 0;}
   50% {
      opacity: 5;}
   100% {
      opacity: 1;}}


Now if you want all the divs to fade in, but your browser doesn't support it, just put down the following code inside <script type="text/javascript"> (which is located in index.html) which is where the JQuery code below will go.
   $(document).ready(function() {
      $( "div" ).hide();
      $("div").fadeIn(1000);
   });


Last edited by mikethedj4 on Fri Sep 26, 2014 9:53 pm, edited 1 time in total.

Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
Post new topic Reply to topic  [ 1 post ] 

All times are UTC - 5 hours [ DST ]



* Login  



Powered by phpBB3 © phpBB Group