active questions tagged gallery - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T09:04:50Zhttp://stackoverflow.com/feeds/tag/galleryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810736/full-width-image-carousel-that-can-center-selected-image-and-partially-show-other0Full width image carousel that can center selected image and partially show other images in galleryabolotnov2009-11-27T21:51:06Z2009-11-27T22:43:02Z
<p>Hi,</p>
<p>I've looked for a plugin that will do this and the closest I could find was CarouselLite but it doesn't really do what I am trying to get. Most of other libraries I could find don't like 100% width or hide inactive images or don't center the active image scrolling it to the very left of the gallery div. I'm not really good at javascipt, maybe someone could point me to a library that will work for me.</p>
<p>I am trying to set a full width image gallery to show fairly large images the way that selected (by a mouse click) image is centered on the page whilst other images are partially shown as well (as much as the screen width allows). Clicking this same image again will center next one on the screen (slide effect would be lovely), clicking other images should center one that's been clicked.</p>
<p>It sounds quite simple and I was expecting to find something that does this quickly. Spent two days with no luck. I hope someone has came across a library that will do this.</p>
<p>Here is a <a href="http://abolotnov.jino.ru/carousel%5Fsample.jpg" rel="nofollow">small image</a> demonstrating what I am looking for (imagine, it's 100% width):</p>
http://stackoverflow.com/questions/1761395/any-jquery-gallery-plugins-fit-for-this0Any jquery gallery plugins fit for this?Mask2009-11-19T06:58:47Z2009-11-19T07:26:43Z
<p>I'm using thumbnails,when user click,show the bigger one.</p>
<p>I checked some plugins,but they doesn't use thumbnails,say,it's the same image whether it looks smaller or bigger.</p>
http://stackoverflow.com/questions/1226983/making-un-visible-a-specific-part-of-url-generated-by-javascript-codeigniter-1making un-visible a specific part of url generated by javascript + codeigniter artmania2009-08-04T11:37:46Z2009-11-18T19:39:31Z
<p>Hi friends,</p>
<pre><code>http://www.blabla.com/our_work/client/client-name#/uploads/18.jpg
</code></pre>
<p>I use CodeIgniter, and this is the url I have. I use a gallery script at the page, and it generates #/uploads/18.jpg such thing at url :( is there any way to make it unvisible or sth . maybe with htaccess. i dont know. </p>
<p>i dont want to spend an another day finding an another gallery script, im already out of deadline :(</p>
<p>appreciate helps...</p>
http://stackoverflow.com/questions/1738337/looking-for-ideas-on-how-to-force-order-of-pictures-in-a-gallery-django-app1looking for ideas on how to force order of pictures in a gallery (django app)sa1252009-11-15T18:20:38Z2009-11-15T18:35:30Z
<p>Hi - I'm building a django app that has an image gallery, and the client insists the images be displayed in specific order. I use the admin interface to upload the images and edit their properties, and I have an ImageFile class in my model that basically looks like this:</p>
<pre><code>class ImageFile(models.Model):
"""represents an image file"""
# the image description
description = models.CharField(max_length=45)
# the actual image
image = models.ImageFile(upload_to='images')
# running number representing the order on the page
order = models.IntegerField()
def __unicode__(self):
return "%s" % (self.description)
class Meta:
db_table = 'images'
</code></pre>
<p>I'm using the IntegerField 'order' to have running number that'll control the sorting. I figured there has to be a smarter/better way to do this (another model?) and also be able to easily control it through the admin interface. Any ideas will be great - thanks.</p>
http://stackoverflow.com/questions/1695512/android-gallery-text-only0Android Gallery Text OnlyFaisal Abid2009-11-08T05:48:03Z2009-11-08T07:31:06Z
<p>Ive looked into the APIDemos and they have an example of the gallery where they show just text, the code however just uses a Cursor , however I want to use a String array. how would i go about doing this? This is the code for the example in API Demos:</p>
<pre><code> Cursor c = getContentResolver().query(People.CONTENT_URI, null, null, null, null);
startManagingCursor(c);
SpinnerAdapter adapter = new SimpleCursorAdapter(this,
// Use a template that displays a text view
android.R.layout.simple_gallery_item,
// Give the cursor to the list adatper
c,
// Map the NAME column in the people database to...
new String[] {People.NAME},
// The "text1" view defined in the XML template
new int[] { android.R.id.text1 });
</code></pre>
http://stackoverflow.com/questions/1686665/jquery-fading-gallery0jquery fading gallerydotty2009-11-06T10:16:58Z2009-11-06T18:47:55Z
<p>Hay all, i've wrote a simple fading gallery with jQuery. It basically loops though a set of images, fading from one to another. It works perfectly, as predicted, until it gets to the last image, it then doesn't fade from the last to the first, just to displays it.</p>
<p>here's my jQuery</p>
<pre><code>$(document).ready(function(){
Zindex = 99999;
i = 0;
$(".flash img").each(function(){
$(this).css({
'position':'absolute',
'z-index':Zindex,
'display':'none'
});
Zindex--;
});
$(".flash img:first").show();
doFade = function(){
if( i == 6 ) { i = 0; };
$(".flash img:eq("+parseInt(i+1)+")").fadeIn(100);
$(".flash img:eq("+parseInt(i)+")").fadeOut(1000);
setTimeout("doFade()", 2000);
i++;
};
doFade();
</code></pre>
<p>});</p>
<p>note: there's only ever going to be 7 images.</p>
<p>And my markup</p>
<pre><code><div class='flash'>
<img src="img/gallery/picture1.jpg" width="780" height="253" alt="Picture1">
<img src="img/gallery/picture2.jpg" width="780" height="253" alt="Picture2">
<img src="img/gallery/picture3.jpg" width="780" height="253" alt="Picture3">
<img src="img/gallery/picture4.jpg" width="780" height="253" alt="Picture4">
<img src="img/gallery/picture5.jpg" width="780" height="253" alt="Picture5">
<img src="img/gallery/picture6.jpg" width="780" height="253" alt="Picture6">
<img src="img/gallery/picture7.jpg" width="780" height="253" alt="Picture7">
</div>
</code></pre>
<p>I think the problem lies in the line</p>
<pre><code>if( i == 6 ) { i = 0; };
</code></pre>
http://stackoverflow.com/questions/1684172/change-galleries-without-changing-page0change galleries without changing pageHristo 2009-11-05T22:41:50Z2009-11-05T22:41:50Z
<p>I have implemented a jQuery gallery. Now I'm trying to switch between different galleries that implement this jQuery plugin but I'm not sure how to do it. The idea is to have a navigation pane on the page somewhere... lets say on the left part of the page. In this page, I would have links to the different galleries, and when I click 'Gallery 1', then gallery 1 would load on the page. Then if I were to click 'Gallery 2', then gallery 2 would load into the same page (something is screaming AJAX here) without navigating to a different web patge, and gallery 1 would be replaced. </p>
<p>I'm not really sure how to approach this and I'm certainly not familiar enough with AJAX and jQuery to pull this off yet. Any advice is appreciated. </p>
<p>Thanks in advance guys.</p>
http://stackoverflow.com/questions/1678759/javascript-jquery-gallery-with-very-large-images-how-can-i-have-it-on-click-fad0Javascript/JQuery: Gallery with very large images. How can I have it on click fade out, load the next image, and then fade in w/ the new image?David R2009-11-05T06:48:55Z2009-11-05T06:53:15Z
<p>Hello, my boss has me working on a website that basically has a very large gallery right in the middle.
The way this one part needs to work is that the user clicks a next/prev button, the image fades out, displays a loading spinning image gif, and then fades in with the new image when it's down downloading. I have no idea where to even begin.</p>
<p>I know jquery somewhat, but I'm very new to actual javascript. My only reference book at hand is a copy of "Javascript for Dummies" for 1997. Is this of any use to me at all, or has Javascript changed since then?</p>
http://stackoverflow.com/questions/1658262/gallery-w-jquery-json-and-prev-next-buttons-if-the-json-request-returns-undef1Gallery w/ jquery, json, and prev/next buttons. If the json request returns undefined, the gallery breaks.David R2009-11-01T20:46:24Z2009-11-02T15:46:52Z
<p>I'm a beginning coder, learned CSS, HTML, and Jquery in an internship this summer. My boss wants me to create a gallery that has one main image, and then two buttons to display the next or previous item. He wants me to use json, so that they can easily add and remove images. I have it written so that, I start with a variable 0, then when I click prev/next it decrements/increments the variable, and then goes back to the json to look for the corresponding picture. The only problem is that if I have four pictures, if the value goes below zero or above 3, it breaks. <br> How can I have the jquery tell if the json lookup returned undefined, so that I can have it either loop or disable the button? I suppose an if statement would be ideal, but I leave it to you. </p>
<pre><code>$(document).ready(function(){
$.getJSON("layout.json",function(data){
// Then put the first picture up from the json data...
$("<img />").attr({
id: "0-middle_image",
class: "middle_image",
src: data.items[0].image ,
})
.appendTo("div#middle_image");
// because I'm starting with the zeroth object, middleimage variable is 0
var mi_val = 0
// when you click one of the cycle buttons...
$("div.cycle_button").click(function(){
//if it is the previous, decrement mi_val, else, increment mi_val
if ( $(this).attr("id") == "button_prev")
{--mi_val;}
else {++mi_val;}
//then, call the appropriate image object from the json
$("img.middle_image").fadeOut(500,function(){
$(this).attr({src: data.items[mi_val].image})
.fadeIn(500);
});
});
});
});
</code></pre>
http://stackoverflow.com/questions/1648613/does-anyone-knows-a-gallery-script-with-tag-support0does anyone knows a gallery script with tag support ?Sam2009-10-30T08:29:19Z2009-10-30T08:52:03Z
<p>Hello</p>
<p>I search a <strong>free</strong> gallery script <strong>php</strong>/mysql (or file based)</p>
<p>I want that script to have <strong>tag support</strong> (like facebooks gallery)</p>
<p>Can anybody help me with that? </p>
<p>thanks</p>
http://stackoverflow.com/questions/1640727/javascript-clicking-thumbnails-to-switch-a-larger-image-best-method0Javascript: Clicking thumbnails to switch a larger image. Best method?McFly882009-10-28T23:12:06Z2009-10-29T00:01:31Z
<p>Hello!</p>
<p>I've been looking for a really easy/lightweight way to just be able to click thumbnails to switch the src of a larger image.</p>
<ul>
<li>This is what I've found:
<a href="http://snipplr.com/view/8688/jquery-image-swap/" rel="nofollow">http://snipplr.com/view/8688/jquery-image-swap/</a></li>
</ul>
<p>I haven't actually tried it out yet. Is this the best solution?</p>
<p>The larger images to be swapped in will have the same width but a different height. Will this cause problems/is there something I need to add for this functionality? Would it be better to do a div with a background-image that swaps and is the height of the largest image?</p>
<p>Also, someone said that it only works once (??)... I'd need it to start out on a certain image, then be able to change to 2-4 other images on thumbnail click.</p>
<p>Thanks for any advice! I'm certainly (obviously) no Javascript writer.</p>
http://stackoverflow.com/questions/1634493/jquery-cycle-plugin-png-overlay-image-alt-text-as-title-conflict0JQuery cycle plugin + PNG overlay + Image alt text as title conflictDave2009-10-28T00:23:08Z2009-10-28T04:45:09Z
<p>Hello</p>
<p>I am trying to achive the following:</p>
<ul>
<li>Create an image gallery using the JQuery Cycle plugin that shows images with titles (taken from the alt text)</li>
<li>Each image has a PNG absolutley posiioned over the top to achieve rounded corners effect</li>
</ul>
<p>Here's my gallery HTML:</p>
<pre><code><div id="slideshow" class="pics">
<div class="photo-container" >
<img src="/path/to/image" alt="alt text as title" />
<img class="mask" src="path/to/mask" />
</div>
</div><!-- /slideshow -->
<div id="title"></div>
</code></pre>
<p>Here's my Jquery gallery function:</p>
<pre><code>$(function() {
$('#slideshow').after('<div id="nav" class="nav"><span style="margin: 0 5px 0 30px;">next image</span>').cycle({
fx: 'fade',
timeout: 0,
cleartypeNoBg: true,
pager: '#nav',
next: '#slideshow',
before: onBefore
});
function onBefore() {
$('#title').html(this.alt);
}
$('#nav a').after('<span>&gt;</span>')
});
</script>
</code></pre>
<p>Here is my CSS that handles the mask:</p>
<pre><code>.photo-container {
position: relative;
display: block;
overflow:hidden;
border: none;
}
img.mask {
position: absolute;
top: 0;
left: 0;
overflow:hidden;
border: none;
}
</code></pre>
<p>The above does not output the alt text into the "title" div. When I remove the mask, it works:</p>
<pre><code><div id="slideshow" class="pics">
<img src="/path/to/image" alt="alt text as title" />
</div><!-- /slideshow -->
<div id="title"></div>
</code></pre>
<p>Any ideas why the additonal div / image is casuing the title to not display?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1623483/how-to-add-new-project-template-to-delphi1How to add new project template to DelphiJim McKeeth2009-10-26T07:25:54Z2009-10-26T07:53:35Z
<p>I remember doing this in Delphi 7, but I don't remember how, or it is different in the new Delphi IDE. But how do I add a new template to the items gallery?</p>
<p><img src="http://content.screencast.com/users/JimMcKeeth/folders/Jing/media/f8a4d64c-a49d-42e3-ba57-ff024acbd018/Delphi%5F2010%5FNew%5FItem%5FGallery.png" alt="Customize items Gallery" /></p>
<p>So then it will show up under the <strong>File</strong> / <strong>New</strong> menu. </p>
http://stackoverflow.com/questions/1575502/integrating-google-custom-search-engine-overlay-with-simple-controls-gallery0Integrating Google Custom Search Engine Overlay with Simple Controls GalleryMike Fisher2009-10-15T22:36:11Z2009-10-15T22:36:11Z
<p>I'm using the Google CSE Overlay on a page, but I'm having trouble integrating the Simple Controls Gallery (<a href="http://www.dynamicdrive.com/dynamicindex4/simplegallery.htm" rel="nofollow">http://www.dynamicdrive.com/dynamicindex4/simplegallery.htm</a>) to the site.</p>
<p>SimpleControlsGallery is based on jQuery and does some preloading and uses high z-index values to swap between a list of images. This causes the image to cycle on a layer in front of the CSEOverlay content. I can sort of work around this (I added the id "googsearch" to the provided Submit button) with this simple event handler:</p>
<pre><code>$("#googsearch").click(function(e) {
mygallery.navigate('playpause');
$('.gallerylayer').css('z-index', '-1');
});
</code></pre>
<p>This works great as long as the user is happy with the search results (presented in the CSEOverlay), but if they close the overlay, I'd like to call</p>
<pre><code>mygallery.navigate('playpause');
</code></pre>
<p>again to resume the gallery presentation. The overlay code is sourced from Google (sorry, I can't provide the direct link) and is minified, and this is outside of my Firebug-fu level. I was unable to find Google documentation that addressed this interest.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1573287/gridview-image-gallery-from-binary-data-images1Gridview image gallery from binary data imagesDavid2009-10-15T15:52:55Z2009-10-15T15:58:13Z
<p>I have some images stored in varbinary fields. I want get them into a List object e.g List list</p>
<p>From here I can access each image byte array, e.g image.ImageData.</p>
<p>I need to bind them somehow as thumbnails to asp:gridview or something similar, is it possible with binary/byte[] images?</p>
http://stackoverflow.com/questions/1566290/swf-file-not-loaded-from-cache-when-accessed-from-different-pages-in-the-website0SWF file not loaded from cache when accessed from different pages in the website?unknown (google)2009-10-14T13:37:34Z2009-10-14T15:05:40Z
<p>I have a flash gallery that uses a dynamic swf file to load data from xml and load images. This same swf files is used over several times for different clients in the portfolio section.</p>
<p>But now it apears that the swf is loaded everytime a different client is clicked even though they all access the same swf file, any ideas?</p>
http://stackoverflow.com/questions/1561938/android-animation-in-gallery-view0Android: Animation in Gallery View?Legend2009-10-13T18:03:28Z2009-10-14T12:33:44Z
<p>When I use the Gallery widget, how do I get the images to say scale up & glow on being selected and scaled down & un-glow on being unselected? All the tutorials I've seen have this effect but I am not able to see it... Is there some kind of an animation that I have to attach to the Gallery?</p>
http://stackoverflow.com/questions/1538276/multipage-jquery-image-gallery0Multipage jQuery image gallerycupakob2009-10-08T14:43:12Z2009-10-08T14:55:08Z
<p>Is there any jQuery gallery, which support multipages? My problem is, that every page contains different number of images. I'm using Lightbox 2, but i can't see any way to configure the gallery with multipages. I can create 5-6 static HTML Pages, one page can contains one image gallery, but i think, this is not the perfect solution. Any suggestions?</p>
http://stackoverflow.com/questions/1517473/expression-blend-behavior-mix-09-pack-gallery2Expression blend behavior Mix 09 pack gallery judi2009-10-04T21:50:41Z2009-10-05T01:07:54Z
<p>Hi Everyone :)
I'm a designer so not to knowledgable at coding :(
I'm trying to install a behavior from the gallery on Expression. I've tried this way
<a href="http://social.expression.microsoft.com/Forums/en-US/blend/thread/b32dd55e-c592-4378-8153-744ccf0526ac/" rel="nofollow">http://social.expression.microsoft.com/Forums/en-US/blend/thread/b32dd55e-c592-4378-8153-744ccf0526ac/</a>
but it doesn't seem to work.
Basicly I downloaded <a href="http://gallery.expression.microsoft.com/en-us/MIXBehaviorPack" rel="nofollow">http://gallery.expression.microsoft.com/en-us/MIXBehaviorPack</a>
ran the project in Blend, dragged the dll files into C:\Program Files\Microsoft Expression\Blend 3\Libraries\Silverlight\v3.0 and
C:\Program Files\Microsoft Expression\Blend 3\Libraries\WPF\v3.5
I then opened up Blend again, rebuilt project and the behaviors didn't appear, I even tried adding them as a reference by right clicking my project in the projects panel.</p>
<p>Is there an easier way to install these behaviors. What am I missing out?</p>
<p>Thanks
Judi</p>
http://stackoverflow.com/questions/1490492/is-there-a-way-to-program-an-mouseover-image-that-controls-2-divs-larger-image-a0Is there a way to program an mouseover image that controls 2 divs [larger image AND a text description] measles2009-09-29T03:53:42Z2009-09-29T04:05:03Z
<p>the design calls for an image gallery with thumbnails for different characters and when u roll over a thumbnail a larger version of the image appears and in a div to the left with a header and description for each character also appears.</p>
<p>1) is there a way to have a rollover control both divs? (enlarged image and description)</p>
<p>and</p>
<p>2) how would i need to go about syncing this up with a cms? </p>
<p>thank you for reading :)</p>
http://stackoverflow.com/questions/1455224/python-based-gallery-web-applications1Python-based Gallery web applications?piquadrat2009-09-21T15:46:55Z2009-09-21T16:21:32Z
<p>I'm trying to cut my last dependencies on PHP and MySQL. The last stumbling block is a image gallery I set up for a client a while ago. The whole website is built around <a href="http://www.djangoproject.com/" rel="nofollow">Django</a> and <a href="http://zine.pocoo.org/" rel="nofollow">Zine</a>, except for the image gallery, which is based on <a href="http://www.plogger.org/" rel="nofollow">plogger</a>. I'd love to replace plogger with a Python solution. Requirements include:</p>
<ul>
<li>good admin interface with batch upload (my client thinks FTP is some kind of disease)</li>
<li>uses a templating system (e.g. Jinja)</li>
<li>WSGI interface</li>
<li>supports PostgreSQL</li>
<li>bonus points if it is a Django app</li>
</ul>
<p>I looked at <a href="http://code.google.com/p/django-photologue/" rel="nofollow">django-photologue</a>, which seems to be a good base for building a gallery app. But it isn't really a drop-in gallery app, which is what I'm looking for.</p>
http://stackoverflow.com/questions/1434263/recommend-iphone-library-for-image-gallery0Recommend iPhone library for image gallery?RyanC2009-09-16T17:06:41Z2009-09-16T17:26:03Z
<p>I would love to use a UIImagePickerController to browse and view images from my app's bundle. However this functionality doesn't seem to exist. Is there a library that replicates the functionality of the photo browser, but can use a list of images from the app bundle? </p>
http://stackoverflow.com/questions/1428044/cms-for-professional-photographer-with-pretty-admin-back-end1CMS for Professional Photographer with Pretty Admin Back EndAshley2009-09-15T15:52:40Z2009-09-15T15:52:40Z
<p>I'm working on a few sites for professional photographers who want to be able to update on their own. I'm looking for a simple CMS solution that has very basic functionality as a gallery and is easy for them to work with. My main concern is with ordering images--I'd like for them to be able to drag their thumbnails around and lock the order. I suspect there is an existing solution out there and am looking for recommendations. I've seen something like this driven by Flash for Flash sites, but I don't know the name of it. I'm looking for something that is similar, but not Flash. </p>
http://stackoverflow.com/questions/1419573/how-would-i-give-the-buttons-in-this-image-gallery-a-rollover-effect-as-well-as1How would I give the buttons in this image gallery a rollover effect, as well as assign each of them individual labels?Jess2009-09-14T03:33:04Z2009-09-14T08:09:32Z
<p>So I am trying to make these "Buttons" in my image gallery have some sort of rollover effect (text change color) , also instead of saying "Linus0", "Linus1", "Linus2", I would like to assign each one its own label. Am I able to do this with an array? Also - what am I doing wrong thats making it think there are six images total? There are only 5, and I only need 5 buttons. Thanks in advance! Here is my code so far:</p>
<pre><code>var myPics:Array = new Array ("image0", "image1", "image2", "image3", "image4");
var totalItems: int = myPics.length;
function createLabels () : void {
for (var i:int=0; i<=totalItems; i++){
var btn_label:TextField = new TextField ();
this.addChild (btn_label);
btn_label.name = "image"+i;
var format:TextFormat = new TextFormat ();
format.font = "Verdana";
format.color = 0x000000;
format.size = 12;
btn_label.defaultTextFormat = format;
btn_label.x = 55;
btn_label.y = 50+ (i*20);
btn_label.text = "Linus"+i;
}
};
function makeMenu ():void {
for (var i:int=0; i<=totalItems; i++) {
var myBtn:button = new button;
this.addChild (myBtn);
myBtn.name = "image"+i;
myBtn.x = 55;
myBtn.y = 50+ (i*20);
myBtn.addEventListener(MouseEvent.CLICK, btnPress);
myBtn.addEventListener(MouseEvent.CLICK, btnPress);
trace(i);
}
};
createLabels ();
makeMenu ();
var myFrame: frame = new frame;
this.addChild (myFrame);
myFrame.name = "frame";
myFrame.x = 200;
myFrame.y = 70;
var myLoader:Loader = new Loader ();
function btnPress (event:MouseEvent):void{
this.enabled = true;
myLoader.load (new URLRequest("images/"+event.target.name+".jpg"));
addChild(myLoader);
myLoader.x = 201;
myLoader.y = 71;
};
</code></pre>
http://stackoverflow.com/questions/1417138/making-iptc-data-searchable0making IPTC data searchablebobby2009-09-13T07:50:17Z2009-09-13T09:33:20Z
<p>I have a question about IPTC metadata. Is it possible to search images that aren't in a database by their IPTC metadata (keywords) and show them and how would I go about doing this? I just need a basic idea. </p>
<p>I know there is the iptcparse() function for PHP. </p>
<p>I have already written a function to grab the image name, location, and extension for all images within a galleries folder and all subdirectories by .jpg extension. </p>
<p>I need to figure out how to extract the metadata without storing it in a database and how to search through it, grab the relevant images that match the search tag (their IPTC keywords should match) and how to display them. I know at the point that I have the final results (post search) i can echo an imagetag with src="$filelocation"> if i have the final results in an array.</p>
<p>Basically, I am not sure if I need to store all my images into a mysql database and also extract the keywords and store them in the database as well before I can actually search and display the results. Also, if you could guide me to any gallery that already is able to do this, that could help as well.</p>
<p>Thanks for any help regarding this issue.</p>
http://stackoverflow.com/questions/1412257/turn-imageflow-into-repeating-carousel1Turn Imageflow into repeating carouselChris Schmitz2009-09-11T17:26:49Z2009-09-11T19:01:53Z
<p>Just wondering if anyone has any experience working with Finn Rudolph's Imageflow gallery.</p>
<p><a href="http://finnrudolph.de/ImageFlow/Examples" rel="nofollow">http://finnrudolph.de/ImageFlow/Examples</a></p>
<p>My client wants to turn it into a repeating carousel. So basically just have the images repeat themselves once you get to the end.</p>
<p>I tried using jQuery to clone and append the images to make an infinite carousel, but they were positioned all crazy, and just seemed to mess everything up.</p>
<p>If someone knows of a way to do this, I would even be willing to pay for them to make the changes.</p>
<p>Thanks for taking the time to read this, and I appreciate any guidance.</p>
<p>Thanks,
Chris</p>
http://stackoverflow.com/questions/1402808/gallery-2-htaccess-deleted-while-permalink-and-rewrite-plugins-active0Gallery 2 htaccess deleted while permalink and rewrite plugins active!NoCanDo2009-09-10T00:20:05Z2009-09-10T02:09:33Z
<p>I deleted my htaccess file from my <a href="http://gallery.menalto.com/" rel="nofollow">gallery2</a>, problem is I have the permalink and rewrite plugins running, now I can't get inside my admin panel to retrive the htaccess code.</p>
<p>Can somebody help?</p>
http://stackoverflow.com/questions/1343756/wordpress-not-listening-to-my-configurations0Wordpress not listening to my configurations!dez1ne2009-08-27T21:10:22Z2009-08-27T21:10:22Z
<p>I setup a wordpress site using the gallery theme by chris wallace. I cannot find an answer to my question on his site or any others that have discussions on this. The detail page after the thumbnail is clicked will not post with the width and height limits I have set it wordpress.</p>
<p>An example is at <a href="http://artalchemy.biz/?p=231" rel="nofollow">http://artalchemy.biz/?p=231</a></p>
<p>I can upload style sheets and show my wordpress media settings if anyone has run across this problem.</p>
http://stackoverflow.com/questions/1314348/php-image-gallery-array0PHP Image gallery arrayHatdrawn2009-08-21T21:39:36Z2009-08-27T00:59:34Z
<p>Hi,</p>
<p>Somebody asked me to created a PHP image gallery that will read the images out of a directory and then create thumbnails for the gallery. There is one directory with thumnails, and one directory with fullsize images. </p>
<p>I read the file names out of the /thumb/ directory and insert each file name as a value into the thumbArray. From there I echo out the values in thumbnail src (<code><img src="<?php echo $thumbArray[$i]; ?>" /></code>) where $i is just a counter. So the thumbnail images are produced from the array but when you click on the thumbnail, it queries ?filename into the url. Using $_SERVER['QUERY_STRING'] I then read said query string and insert the query, (filename), into the the large <code><img src"<?php echo $_SERVER['QUERY_STRING']; ?>" /></code>. That is limited though. As I can now not read the array, as a reference point, and can no longer point forwards or backwards in the array.</p>
<p>Am I making more sense now? </p>
<p>Please help...</p>
<pre><code> <?php
$i = 0;
/* Large file name and thumbnail file name must match */
/* Large image size = 480px x 300px */
echo '<img class="frameImg" src="images/large/'.$_SERVER['QUERY_STRING'].'" />';
?>
<p id="prevNext"><a href="#">&lt;&lt; Prev </a> || <a href="#"> Next &gt;&gt;</a></p>
</div>
<div id="thumbs">
<ul>
<?php
/* Must change $dir to the full path of directory all the way from root /home/user/domain/images/thumb */
$dir = "*************************";
$dh = opendir($dir);
/* Thumbnail file name and large file name must match */
$thumbArray = array();
while (($file = readdir($dh)) !== false) {
if ($file != "." && $file != "..") {
$thumbArray[$i]=$file;
echo '<li id="'.$i.'"><a href="?'.$thumbArray[$i].'"><img src="images/thumb/'.$thumbArray[$i].'" alt="Alt for '.$thumbArray[$i].'" /></a></li>';
$i++;
}
}
closedir($dh);
?>
</code></pre>
<p><a href="http://client.clogg.ca/janelle-nadeau/gallery.php" rel="nofollow">http://client.clogg.ca/janelle-nadeau/gallery.php</a></p>
http://stackoverflow.com/questions/1303513/jquery-cycle-plugin-refuses-to-scroll-no-idea-why1[jQuery] Cycle plugin refuses to scroll, no idea why.dougoftheabaci2009-08-20T01:32:50Z2009-08-20T01:54:37Z
<p>I"m trying to make a gallery piece for my website. I know there are ones out there that would do most of what I want automatically but I'm hoping to be able to build my own that way I know exactly what's gone into it.</p>
<p>Problem is, it's not working. Sort of.</p>
<p>The CSS works as it's supposed to. The jQuery Cycle plugin is providing the sexy bits but it only works if I set the animation to Fade. If I tell it to scrollLeft or scrollHorz it fails. Why?</p>
<p>I know I'm using the latest jQuery Cycle plugin (with all the animations) and I'm properly linking to jQuery and I am linking to the Easing plugin for good measure. No go. No errors, either.</p>
<p>Any ideas?</p>
<p>You can see my code here: <a href="http://www.designbyadmiral.com/tests/gallery/index.html" rel="nofollow">http://www.designbyadmiral.com/tests/gallery/index.html</a></p>