[jQuery] Re: Loading GIF Slideshow w/o Modal

2008-02-13 Thread Ange

Unfortunately, this method doesn't validate. I'm getting an error for
every appended image in the head of the page. Is there a way to
use .append( ') that validates?
-Ange


On Feb 4, 4:42 am, Pickledegg <[EMAIL PROTECTED]> wrote:
> Thats clever, thanks Ange. So on mouse over the image tags 02>07 are
> loaded. It looks like I'll have to figure a way of loading various
> additional images (ie the next 6 ) when they click again and so on,
> and a way to get around loading the same images again when they click
> back etc. Food for thought though.
>
> On Feb 2, 9:09 pm, Ange <[EMAIL PROTECTED]> wrote:
>
> > This method solves the preloading problem with the Cycle 
> > plugin.http://www.circleatseven.com/portfolio.php
>
> > $("div#gallerywrapper").one("mouseover", function() {
> > $("div#gallery").append(
> > '' +
> > '' +
> > '' +
> > '' +
> > '' +
> > '' );
> > $("div#slideswebbc").cycle({
> >   fx: 'fade',
> >   speed: 300,
> >   timeout: 0,
> >   next: '#next',
> >   prev: '#prev',
> >   pause: 1
> > });
> > });
>
> > On Feb 1, 4:13 am, Pickledegg <[EMAIL PROTECTED]> wrote:
>
> > > Hi Ange
>
> > > It looks fantastic, but I take it you're like me, and are searching
> > > for a databased or 'non-preloaded' version?
>
> > > On Jan 31, 6:58 pm, Ange <[EMAIL PROTECTED]> wrote:
>
> > > > Here's a link to the page working as I want it to, with the exception
> > > > of the initial pageloadbeing over 
> > > > 4MB:http://www.circleatseven.com/test/portfolio.php
>
> > > > On Jan 31, 12:05 pm, Pickledegg <[EMAIL PROTECTED]> wrote:
>
> > > > > SEAN-O
>
> > > > > The above link is what I found too, but you're missing the original
> > > > > post slightly. He needs something that you can plug into adatabase,
> > > > > as preloading theimagesis impractical with large files.
>
> > > > > Does anyone know of adatabaseready version?
>
> > > > > On Jan 31, 4:17 pm, Sean O <[EMAIL PROTECTED]> wrote:
>
> > > > > > Ange,
>
> > > > > > It sounds like the SlideViewer plugin might help 
> > > > > > you:http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/i...
>
> > > > > > SEAN O
> > > > > > _www.sean-o.com
>
> > > > > > Ange-6 wrote:
>
> > > > > > > I'm looking for a jQuery slideshow plugin, and I can't seem to 
> > > > > > > fond
> > > > > > > one that does all I need. Cycle and jCarousel come close. But my
> > > > > > > problem is I have multiple galleries on one page, and they all 
> > > > > > > have
> > > > > > > largeimages. So, since theyloadall theimagesin every gallery and
> > > > > > > then hide them, the page totals over 4000KB.
>
> > > > > > > I need something like Litebox or Thickbox that calls the next/prev
> > > > > > > image and loads it as needed, with a loading gif. But I don't 
> > > > > > > want a
> > > > > > > pop-up modal. It would be nice if I could just put one image from 
> > > > > > > each
> > > > > > > gallery in the HTML and have the prev/next buttonsloadand fade to
> > > > > > > the prev/next image.
>
> > > > > > > Any suggestions?
>
> > > > > > --
> > > > > > View this message in 
> > > > > > context:http://www.nabble.com/Loading-GIF-Slideshow-w-o-Modal-tp15194790s2724...
> > > > > Ange,
> > > > ent from the jQuery General Discussion mailing list archive at 
> > > > Nabble.com.


[jQuery] Re: Loading GIF Slideshow w/o Modal

2008-02-02 Thread Ange

This method solves the preloading problem with the Cycle plugin.
http://www.circleatseven.com/portfolio.php

$("div#gallerywrapper").one("mouseover", function() {
$("div#gallery").append(
'' +
'' +
'' +
'' +
'' +
'' );
$("div#slideswebbc").cycle({
  fx: 'fade',
  speed: 300,
  timeout: 0,
  next: '#next',
  prev: '#prev',
  pause: 1
});
});



On Feb 1, 4:13 am, Pickledegg <[EMAIL PROTECTED]> wrote:
> Hi Ange
>
> It looks fantastic, but I take it you're like me, and are searching
> for a databased or 'non-preloaded' version?
>
> On Jan 31, 6:58 pm, Ange <[EMAIL PROTECTED]> wrote:
>
> > Here's a link to the page working as I want it to, with the exception
> > of the initial page load being over 
> > 4MB:http://www.circleatseven.com/test/portfolio.php
>
> > On Jan 31, 12:05 pm, Pickledegg <[EMAIL PROTECTED]> wrote:
>
> > > SEAN-O
>
> > > The above link is what I found too, but you're missing the original
> > > post slightly. He needs something that you can plug into a database,
> > > as preloading the images is impractical with large files.
>
> > > Does anyone know of a database ready version?
>
> > > On Jan 31, 4:17 pm, Sean O <[EMAIL PROTECTED]> wrote:
>
> > > > Ange,
>
> > > > It sounds like the SlideViewer plugin might help 
> > > > you:http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/i...
>
> > > > SEAN O
> > > > _www.sean-o.com
>
> > > > Ange-6 wrote:
>
> > > > > I'm looking for a jQuery slideshow plugin, and I can't seem to fond
> > > > > one that does all I need. Cycle and jCarousel come close. But my
> > > > > problem is I have multiple galleries on one page, and they all have
> > > > > large images. So, since they load all the images in every gallery and
> > > > > then hide them, the page totals over 4000KB.
>
> > > > > I need something like Litebox or Thickbox that calls the next/prev
> > > > > image and loads it as needed, with a loading gif. But I don't want a
> > > > > pop-up modal. It would be nice if I could just put one image from each
> > > > > gallery in the HTML and have the prev/next buttons load and fade to
> > > > > the prev/next image.
>
> > > > > Any suggestions?
>
> > > > --
> > > > View this message in 
> > > > context:http://www.nabble.com/Loading-GIF-Slideshow-w-o-Modal-tp15194790s2724...
> > > Ange,
> > ent from the jQuery General Discussion mailing list archive at Nabble.com.


[jQuery] Re: Loading GIF Slideshow w/o Modal

2008-01-31 Thread Ange

Here's a link to the page working as I want it to, with the exception
of the initial page load being over 4MB:
http://www.circleatseven.com/test/portfolio.php



On Jan 31, 12:05 pm, Pickledegg <[EMAIL PROTECTED]> wrote:
> SEAN-O
>
> The above link is what I found too, but you're missing the original
> post slightly. He needs something that you can plug into a database,
> as preloading the images is impractical with large files.
>
> Does anyone know of a database ready version?
>
> On Jan 31, 4:17 pm, Sean O <[EMAIL PROTECTED]> wrote:
>
> > Ange,
>
> > It sounds like the SlideViewer plugin might help 
> > you:http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/i...
>
> > SEAN O
> > _www.sean-o.com
>
> > Ange-6 wrote:
>
> > > I'm looking for a jQuery slideshow plugin, and I can't seem to fond
> > > one that does all I need. Cycle and jCarousel come close. But my
> > > problem is I have multiple galleries on one page, and they all have
> > > large images. So, since they load all the images in every gallery and
> > > then hide them, the page totals over 4000KB.
>
> > > I need something like Litebox or Thickbox that calls the next/prev
> > > image and loads it as needed, with a loading gif. But I don't want a
> > > pop-up modal. It would be nice if I could just put one image from each
> > > gallery in the HTML and have the prev/next buttons load and fade to
> > > the prev/next image.
>
> > > Any suggestions?
>
> > --
> > View this message in 
> > context:http://www.nabble.com/Loading-GIF-Slideshow-w-o-Modal-tp15194790s2724...
> > Sent from the jQuery General Discussion mailing list archive at Nabble.com.


[jQuery] Re: Loading GIF Slideshow w/o Modal

2008-01-30 Thread Ange

Thanks. Can any of these be customized to be a non-modal, no thumbs
gallery? I need the first image of the galleries to be visible on page
load, and prev/next buttons to load images as needed.
-Ange

On Jan 30, 6:52 pm, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> Ange,
> Have a look at one of these 
> plugins:http://benjaminsterling.com/category/jquery-plugin/


[jQuery] Loading GIF Slideshow w/o Modal

2008-01-30 Thread Ange

I'm looking for a jQuery slideshow plugin, and I can't seem to fond
one that does all I need. Cycle and jCarousel come close. But my
problem is I have multiple galleries on one page, and they all have
large images. So, since they load all the images in every gallery and
then hide them, the page totals over 4000KB.

I need something like Litebox or Thickbox that calls the next/prev
image and loads it as needed, with a loading gif. But I don't want a
pop-up modal. It would be nice if I could just put one image from each
gallery in the HTML and have the prev/next buttons load and fade to
the prev/next image.

Any suggestions?


[jQuery] Re: slideToggle causes links to disappear

2007-12-14 Thread Ange

http://www.circleatseven.com/PROJECTS/mockup/toggletest.php

There's a greatly simplified test page.
Why does the slideToggle cause the links to disappear?


[jQuery] Re: jQuery sendEvent('stop')

2007-12-14 Thread Ange

Here's the problem I'm having in action.
It appears that hiding/toggling the content causes IE/Win to error on
the sendEvent.

I've put together 2 pages:
http://www.circleatseven.com/PROJECTS/mockup/index.php";>one
with the desired layout
http://www.circleatseven.com/PROJECTS/mockup/index2.php";>and
one without the hiding/toggling

Without the toggling, there are no errors and the sendEvent('stop')
works perfectly.

With the desired toggling, IE6 gives me an error (Line: 15; Char: 2;
Error: Object doesn't support this property or method; Code: 0) on the
following line...
thisMovie("playerID2").sendEvent(typ,prm);

Is there a reason the jQuery toggling would conflict with the
sendEvent?


[jQuery] jQuery sendEvent('stop')

2007-12-13 Thread Ange

Does anyone know how to have a jQuery click function sendEvent('stop')
to a JW Media Player (http://jeroenwijering.com/)?

I can do it w/ a text link:
Stop loading and playing

But I need to have it on a jQuery click with default disabled.

Anyone?


[jQuery] slideToggle causes links to disappear

2007-12-13 Thread Ange

On this page...

http://www.circleatseven.com/PROJECTS/mockup/home.php

...in the right sidebar, the links in the "Campus Guide" menu don't show
up in IE7 after the containing div's visibility is toggled. I'm
assuming it's the same issue in the drop-down main menu causing those
links not to show in IE7 either.

I've tried removing different CSS declarations to see what's causing
them not to display, and the culprit seems to be height or
display:block. Is there something about slideToggle that messes with
the height or block level?

Please help a kinda-noob.
Thanks!