slimbox

Is there a way to create a fullscreen gallery on iPhone through Safari?

I've been creating CSS/Javascript to style an upcoming site differently on iPhone - mostly to enhance usability. On the desktop app, I use slimbox in combination with mootools for an image gallery. This doesn't work on iPhone because it won't show the image fullscreen (safari chrome gets in the way). The solution I have at the moment is ...

JQuery slimbox rebind after ajax callback

I'm having trouble rebinding slimbox2 after ajax content is loaded. I realize I need to rebind the function on the ajax load but I have no idea how to do that. I'm using this code to generate the external content. $(document).ready(function() { $('.content_box').hide(); $('.sf-menuUP a').click(function(){ $('.content_box').fadeIn('slow...

slimbox after ajax call, using next/previous functions

I'm trying to get the next/previous buttons to work with SLIMBOX gallery after using an AJAX call to dynamically load content. $(document).ready(function() { $('.content_box').hide(); $('.sf-menuUP a').click(function(){ $('.content_box').fadeIn('slow'); }); var hash = window.location.hash.substr(1); var href = $('.sf-menuUP li a').eac...

Hide Image Title in Slimbox

My issue is a lot like this solved thread, except I'm using Slimbox 2: http://stackoverflow.com/questions/940994/hide-image-title-tool-tip-popup-on-mouse-rollover-or-hover When you hover over an image, the "Title" attribute pops up. I need HTML in my image title in Slimbox. So, of course, when you're hovering, the "Title" attribute sho...

Is it possible to hide href title?

<a href="link.html" title="Titletext"> ...is the code. I need to use the title attribute because of slimbox, but I want to hide the title-text that shows up when hovering the mouse over the link. Any ideas? ...

Jquery toggle function breaks on pages that include mootools or slimbox script.

My friend is asked me to look over her site where there is an error on pages that use slimbox-- an unrelated Jquery toggle function breaks— here's the code: $(function() { $(".cat_nav dd").hide(); $(".cat_nav dt").click(function() { $(this).next().toggle(); return false; }); }); This code works fine when slimbox ...

jqzoom/evolution over a image in slimbox !

Hi, I have a set of images that open up using slimbox on a website and now I would like to allow these images to run a jqzoom when rolled over so that my clients will see an even more detailed image than the slimbox version. Do you think this is possible and if so any helpful pointers would be greatly received :) Regards, mm ...

Creating container resize function in jQuery Infinite Carousel

I'm creating a custom implementation of jquery Infinite Carousel on a wordpress site, http://cambridgeuplighting.com/scale-test. I want to give my client the option to add photos of any resolution and have the container element resize to fit it. I'm going for the same animated resize effect as in Lightbox/Slimbox or SimpleViewer. I ha...

Does SlimBox2 support PNG?

I tried to open a PNG file in Firefox using Slimbox2: <a href="images/project3.png" rel="lightbox" title="my caption">image #1</a> It didn't work, it just opened the picture. then I cahnged PNG to Jpg and it worked. Does SlimBox2 support PNG? Header: <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ...

jQuery Slimbox is not requesting files correctly

I am using jQuery slimbox with it's API. Here is my JavaScript that gets image paths via JSON, and then launches the slimbox via it's API. $('#main-container').append('<span id="check-our-adverts">Check our Adverts</span>'); var advertImages = []; $.getJSON( config.basePath + 'get-adverts/', function(images) { advertIma...

Is there an alternative to lightbox / fancy box / slimbox that does not require a doctype declaration?

Hi, I am forced to work within a rubbish IDE that creates survey webpages, therefore I cannot control the doctype of the pages (it's not a great piece of software, in fact I hate it but have no choice, and it adheres to no standard doctype, it adheres to no standard anything!). I want to produce a pretty popup on my pages, but cannot u...

Slimbox 2 Plugin, jQuery Flickr, and IE8

Hello, I am currently developing a site that I make use of two jQuery plugins: jQuery Flickr plugin jQuery Slimbox plugin The first plugin is used to pull in flickr photos from a specific account. These photos are displayed as thumbnails on the page. I am then using the second plugin to display larger views of these images. Because...

What is wrong with this slimbox script code?

I want to make a gallery with slimbox but cannot get it to run the script. I'm using an ASP.NET Master Page and want the script to be retrieved on this page. The code I am using is: <script type="text/javascript" src="js/slimbox.js"></script> <script type="text/javascript" src="js/mootools.js"></script> ...

JavaScript libraries conflicting with each other

I'm working on a modeling website for my girlfriend and she wants a large slideshow as background on the website. I used the JonDesign Gallery for that, which works nicely for this purpose and is relatively light-weight. Now, for the contact form I'd like to use something Lightbox/Slimbox style. Slimbox works with Mootools, which is als...

limit slimbox (lightbox) image to window size

HI all, Anyone know how to limit the overlay window size of slimbox to be a percentage of the user's window size (like prettyphoto does) Thanks Here's the module code: http://paste.ly/3Kz And the slimbox js: http://paste.ly/3L0 ...