[jQuery] Re: jQuery Cycle: two cycles with different effect & one pager

2010-02-02 Thread Mike Alsup
$('#slideshow').cycle({ fx: 'fade,cover' }); On Feb 1, 8:14 pm, Florushj wrote: > I'm having some trouble adjusting jQuery Cycle to my wishes. Unfortunately > I'm no jQuery hero :-( > > This is what I want in short: > It's basically this > example:http://www.malsup.com/jquery/cycle/pager-do

[jQuery] Re: Jquery Cycle Plugin Bugs

2010-01-15 Thread keli marks
ah thank you for that help, that clears up most of the issue. THe home page bug is very "buggy" it happens once in a while and with a refresh generally fixes itself. I guess the vast majorit of the time there is no issue. Thank you very much! I really appreciate it. On Jan 13, 12:15 pm, "danny.c

[jQuery] Re: Jquery Cycle Plugin Bugs

2010-01-13 Thread danny.copel...@gmail.com
On another note, if you use fx: 'slideHorz' it will slide in the appropriate direction(left/right), depending on button you click (downwards = left, upwards = left). On Jan 13, 10:33 am, keli marks wrote: > Hey all: > > I'm having some odd bugs with 2 different kind slideshows. > > www.exhaciend

[jQuery] Re: Jquery Cycle Plugin Bugs

2010-01-13 Thread danny.copel...@gmail.com
Homepage slideshow seems to work fine for me. Have you since found the error? As for the events slideshow, you should be able to avoid image size issues, try adding height and width attributes to the tags. Should fix that. -Dan On Jan 13, 10:33 am, keli marks wrote: > Hey all: > > I'm having

[jQuery] Re: JQuery Cycle Speed

2010-01-07 Thread Mike Alsup
> Figured it out. The problem is, in fact, with the easing. Cycle has a default > easing set, but setting it to 'linear' fixes it and makes the entire thing > smooth. Hmm, nice.

[jQuery] Re: JQuery Cycle Speed

2010-01-07 Thread Mike Alsup
> Hey, I'm using the JQuery cycle plugin (http://malsup.com/jquery/cycle/) and > I have images set to auto-scroll horizontally. The plugin automatically > eases the slides (I've tried turning easing off), and I'm wondering if > anyone knows of a way to get them to just continually move horizontally

[jQuery] Re: jQuery Cycle Plugin width problems

2010-01-04 Thread Mike Alsup
> Thanks for any help on this. .slideshow li { width: 100% !important }

[jQuery] Re: jQuery Cycle Multiple Pagers

2009-12-28 Thread pmAgony
Thanks Mike & Charlie, It appears that I have the whole shebang working now. All the best to you both. Thanks, On Dec 24, 1:33 pm, Charlie wrote: >  for the arrows you can create absolute positioned containers over top of the > slides that fadeIn, show or whatever when hover over slide. > use

Re: [jQuery] Re: jQuery Cycle Multiple Pagers

2009-12-24 Thread Charlie
 for the arrows you can create absolute positioned containers over top of the slides that fadeIn, show or whatever when hover over slide. use the "next" and "prev" options to assign selector to your arrows within the overlay containers $("mySlideContainer").cycle({     //other options alread

[jQuery] Re: jQuery Cycle Multiple Pagers

2009-12-24 Thread Mike Alsup
Two pagers, one slideshow: http://jquery.malsup.com/cycle/pager-two.html Mike On Dec 24, 8:54 am, pmAgony wrote: > Update, I was able to successfully complete #2 and #3.  My challenge > right now is being able to get two synchronized pagers on the same > cycle. > > If anyone can chime in to ass

[jQuery] Re: jQuery Cycle Multiple Pagers

2009-12-24 Thread pmAgony
Update, I was able to successfully complete #2 and #3. My challenge right now is being able to get two synchronized pagers on the same cycle. If anyone can chime in to assist, I'd greatly appreciate it. Here's a link to take a look: http://www.cuisinteractive.com/staging/etc/index.php Thanks!

[jQuery] Re: jQuery Cycle - Global pause on hover?

2009-12-21 Thread Mike Alsup
> If there are three slideshows on one page, is there a way to PAUSE > slideshows B & C when hovering over A? var $slideshows = $('#A,#B,#C').cycle({ // options speed: 700, timeout: 3000 }); $slideshows.hover( function() { $slideshows('pause'); }, function() { $slides

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-22 Thread Mike Alsup
Try this: after: function(curr, next, opts) { var alt = $(next).find('img').attr('alt'); $('#caption').html(alt); } On Nov 22, 12:12 am, Wroathe wrote: > You're on the right track!!! I added an alt attribute to the > first .featured-image and it displayed exactly where I wanted it!!! > T

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Wroathe
You're on the right track!!! I added an alt attribute to the first .featured-image and it displayed exactly where I wanted it!!! The question is now how to select the img tag nested in it (in the interest of writing valid xhtml). On Nov 21, 11:06 pm, Wroathe wrote: > I tried it and it didn't work

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Wroathe
I tried it and it didn't work Mike. I did a console.log of the alt variable afterwards and it was tossing undefined. I think this is because I have all of the slides wrapped in divs. I'm not sure how to remedy that problem. Is there a way of selecting the img's alt attribute using the code you just

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Wroathe
I'll give that try and see how it works - thanks in advance for the reply. I really appreciate it. On Nov 21, 7:01 pm, Mike Alsup wrote: > Try using the 'after' callback: > > $(function() { >     $('div#slides').cycle({ >         timeout: 7000, >         pause: 1, >         pager: 'div#buttons',

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Mike Alsup
Try using the 'after' callback: $(function() { $('div#slides').cycle({ timeout: 7000, pause: 1, pager: 'div#buttons', pagerAnchorBuilder: function(idx) { return '' + idx + ''; }, after: function(curr, next, opts) { var alt

[jQuery] Re: jQuery cycle plugin

2009-11-15 Thread bozlite
Finally discovered my own answer to this - the original code only fails if the fx: parameter is set to 'none' - if set to any other transition effect it works perfectly. Not sure why this should be, but there you go.

[jQuery] Re: jQuery cycle plugin

2009-11-13 Thread bozlite
Can anyone help with this at all? Matthew

[jQuery] Re: jquery cycle - link to certain images only

2009-10-29 Thread Mike Alsup
> I am using jquery cycle to make a book presentation. Right now there > is click-advance and also buttons for next and previous images. > But what I want is to also have buttons to go to certain pages only, > e.g. first page, chapter 1, last page. > What I've found so far is only the possibility t

[jQuery] Re: jquery cycle site is down

2009-10-17 Thread Mike Alsup
> the cycle site is down since yesterday, i get a 403 and 404 error, ??? Hosting problems. Content is temporarily available here: http://www.malsup.com/jquery/cycle2/ Mike

[jQuery] Re: Jquery Cycle - Combining Prev & Next with Image Count

2009-10-14 Thread Mike Alsup
"There's a demo for that". http://jquery.malsup.com/cycle/count2.html On Oct 14, 11:48 am, northbeach wrote: > I have worked out how to use the Next and Prev example here > :http://malsup.com/jquery/cycle/int2.html > > and the count example here:http://www.malsup.com/jquery/cycle/count.html

[jQuery] Re: JQuery Cycle Plugin Random Timeout

2009-09-16 Thread Mike Alsup
> Given that, how would you allocate a timeout for say the first 3 > slides and then have the other slides all running at the default > timeout? Keep a counter and reference/update it in the timeoutFn. After 3 calls to the timeoutFn, return false thereafter.

[jQuery] Re: jQuery cycle IE issue

2009-09-16 Thread kcory
Hi Mike, Thanks for taking the time to respond but it still doesn't work. I've tried #slideshow1 and #slideshow1 img but still no improvement. I'm still getting the DOM queuing slideshow error in my console but now the height and width do have values. Any more suggestions? Thanks in advance :)

[jQuery] Re: JQuery Cycle Plugin Random Timeout

2009-09-16 Thread Paul
Given that, how would you allocate a timeout for say the first 3 slides and then have the other slides all running at the default timeout? On Sep 9, 8:06 pm, Mike Alsup wrote: > On Sep 8, 6:48 pm, Mike Alsup wrote: > > > > > > Hey thanks Mike, I got the random timeouts working, however all the

[jQuery] Re: jQuery cycle IE issue

2009-09-15 Thread Mike Alsup
Try adding style rules for the anchors - they are the actual slides in your case: #slideshow1 a { height: 463px; width: 841px; display: block; } Mike On Sep 15, 5:00 pm, kcory wrote: > Hi, > > I've tried implementing jQuery cycle on my portfolio and it works in FF3 and > Safari but not in IE.

[jQuery] Re: JQuery cycle plugin bug(?) in firefox

2009-09-13 Thread Mike Alsup
> When you first visit the page, firefox fails to render the images > correctly with the first overflowing it's container and the rest > appearing as squashed thumbnails.  When you refresh the page (but not > shift+refresh) it all works fine.   > Seehttp://www.thecathedraldeli.com/beta.html > for

[jQuery] Re: JQuery Cycle Plugin Random Timeout

2009-09-09 Thread Mike Alsup
On Sep 8, 6:48 pm, Mike Alsup wrote: > > Hey thanks Mike, I got the random timeouts working, however all the > > slideshows fade in at the same time on the first transition... is > > there any way around that? Here is my code: > > >

[jQuery] Re: JQuery Cycle Plugin Random Timeout

2009-09-08 Thread Mike Alsup
> Hey thanks Mike, I got the random timeouts working, however all the > slideshows fade in at the same time on the first transition... is > there any way around that? Here is my code: > >

[jQuery] Re: JQuery Cycle Plugin Random Timeout

2009-09-08 Thread mattjp18
Hey thanks Mike, I got the random timeouts working, however all the slideshows fade in at the same time on the first transition... is there any way around that? Here is my code: $(document).ready(function() { $('.slideshow').cycle({ fx: 'fade', timeout: 1,

[jQuery] Re: JQuery Cycle Plugin Random Timeout

2009-09-08 Thread Mike Alsup
> Hey, does anyone know how I can have the timeout change randomly for > every slide? > These demos might get you going in the right direction: http://www.malsup.com/jquery/cycle/timeout.html http://www.malsup.com/jquery/cycle/timeout2.html

[jQuery] Re: JQuery Cycle effects don't work in IE

2009-08-20 Thread TheoSoft
The validation errors was what was causing the problem. Because I'm pulling the photos from a db, I needed the id number. I added a p, and then stripped off the p using javascript replace. Pulled the empty ul out and added it via JQuery before my Cycle function. Fully valid and the fade effect

[jQuery] Re: jQuery Cycle Manual With Text?

2009-08-19 Thread Charlie
in cycle I use before and after options to insert custom functions to index the text and hide/show, then it's a just a matter of css positioning and Z-index Ian Gordon wrote: I am trying to create something like this: http://i27.tinypic.com/29p3woi.jpg The text would be a tag or someth

[jQuery] Re: JQuery Cycle effects don't work in IE

2009-08-18 Thread amuhlou
I checked it on a version of IE7 using VMware and am not seeing the fade transition working. There are, however, some validation errors you may want to clean up. the id attribute cannot start with a number, and it appears that your images for the cycle area all have this in common. On Aug 18, 9:

[jQuery] Re: JQuery Cycle effects don't work in IE

2009-08-18 Thread theosoft
It faded for you in IE7 & 8? I'm not seeing the fade at all in IE. On Aug 18, 10:55 am, Charlie wrote: > works in IE 7 &8 for me > theosoft wrote:I have tried various things to get this to work in IE, and I'm > not sure why it won't work. The shuffle effect works, but not properly. It > works

[jQuery] Re: JQuery Cycle effects don't work in IE

2009-08-18 Thread Charlie
works in IE 7 &8 for me theosoft wrote: I have tried various things to get this to work in IE, and I'm not sure why it won't work. The shuffle effect works, but not properly. It works in all the other browsers just fine. I've uploaded the code to jsbin here: http://jsbin.com/icuko I need

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-17 Thread Charlie
scrollHorz does what you want noahT wrote: This it perfect for me but it brings up another issue: I am using a left-right scroller and as far as I can tell, the fx option only allows for one type of transition animation (in my case, I am using fx: 'scrollLeft', so even when I hit the prev

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-16 Thread nipponese
This it perfect for me but it brings up another issue: I am using a left-right scroller and as far as I can tell, the fx option only allows for one type of transition animation (in my case, I am using fx: 'scrollLeft', so even when I hit the prev button, it scrolls to the right when it should scr

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-16 Thread noahT
This it perfect for me but it brings up another issue: I am using a left-right scroller and as far as I can tell, the fx option only allows for one type of transition animation (in my case, I am using fx: 'scrollLeft', so even when I hit the prev button, it scrolls to the right when it should scro

[jQuery] Re: jquery + cycle + IE

2009-08-10 Thread Mike Alsup
> http://negativespace.ca/clients/mirrorbuilder/ > > > > Works fine in Safari and Firefox so far, but for whatever reason, both > of those controllers will not show up in IE6 or IE7. I am a little bit > stumped. Just looked in IE7 - looks good to me. Did you fix it?

[jQuery] Re: jQuery Cycle Plugin and Links

2009-08-10 Thread artistique
Hi there, I am having a similar issue, but the functionality I want to achieve is a bit simpler. Right now I want to apply a link of my choosing to each slide (in the HTML of the slide), but t this breaks the alt information pulled from the the pager and displays an "undefined" error on the page.

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Ed F.
Yes, i think that's the way to go, i'm just not talented enough with the js to write that indexing code. that's why i'm posting here. this thread was started by someone who had done the same thing, and with some help, got it to work. i couldn't get his code to work, so i'm hoping someone might h

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Charlie
sorry, didn't realize you were running 12 slideshows. You could change to classes on all your selectors and index them  to  shorten code to one constructor. Not sure that performance wouldn't be a hinderance though Ed F. wrote: Hi Charlie, I'm sorry i don't think i'm making myself clear

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Ed F.
Hi Charlie, I'm sorry i don't think i'm making myself clear enough. here is the init.js file that i'm using, you can see the repeated code for each instance of the slideshow: http://tinyurl.com/mrhkym as you can see, lots of duplicated code to deal with each unique instance of the slideshow.

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Charlie
constructor you are showing is only about 10 lines. If the onAfter is identical events for both you should be able to re use the same function after: onAfter1 for both Ed F. wrote: Hi Charlie, thanks for the reply, i appreciate it. That's what I'm doing: repeating the constructor and ch

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Ed F.
Hi Charlie, thanks for the reply, i appreciate it. That's what I'm doing: repeating the constructor and changing the IDs. this adds 200 extra lines of code to the js file though. Previously in this thread, someone else figured out a way to not have to add unique IDs to the html code. so that the

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Charlie Tomlinson
sorry , your next and prev  ID's will need to be unique, change them iin new constructor Ed F. wrote: I figured out a way to make the "current slide number" work for multiple slideshows on the same page, but i have to repeat the function declarations for each instance of a slideshow, lik

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Charlie
As long as you keep the ID's unique for the separate slideshows *and pagers* you should be able to call same functions  onAfter duplicate your constructor with the other ID you want to have cylcle on  and change your pager ID accordingly Ed F. wrote: I figured out a way to make the "cu

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-05 Thread Ed F.
I figured out a way to make the "current slide number" work for multiple slideshows on the same page, but i have to repeat the function declarations for each instance of a slideshow, like so: // init for the cycle js $(document).ready(function(){ $('#s1').cycle({ fx:'fade',

[jQuery] Re: jQuery Cycle pager with images

2009-08-05 Thread AdmireNL
Hi, I've done that before. Check this website: http://www.hoveniersbedrijfdeweerdt.nl/ You can see that the active pager image gets a class. With that class you can change it's appearance with CSS. Goodluck! Admire On Jul 23, 6:10 pm, matttr wrote: > Hi, > > I am fairly new to both jWuery and

[jQuery] Re: jquery cycle with multiple image

2009-08-04 Thread Charlie
I don't think anyone can help without seeing the problem you are having. There is obviously something quite wrong with your implementation, can you provide a link? iktiar2...@gmail.com wrote: Hi hope all are fine :) like this demo http://malsup.com/jquery/cycle/int2.html , i need make

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-04 Thread Ed F.
hi Mike, thank you for replying. your plugin is awesome. On thing, in your example, you only have one slideshow on the page, I have multiple slideshows on the page with the updating count. and I can get the updated count to work for the firat instance of the slideshow but it breaks for the res

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-03 Thread Mike Alsup
> Hi, I'm working on the same issue with Cycle. I have multiple slideshows on > a page, each with current/total slide counter, example: "2 of 5 images" > (oddly, there are no examples of this particular implementation on Mike > Alsup's otherwise ridiculously varied and helpful cycle demo pages).

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-07-30 Thread Ed F.
Hi, I'm working on the same issue with Cycle. I have multiple slideshows on a page, each with current/total slide counter, example: "2 of 5 images" (oddly, there are no examples of this particular implementation on Mike Alsup's otherwise ridiculously varied and helpful cycle demo pages). and so

[jQuery] Re: jQuery Cycle Plugin and Links

2009-07-22 Thread Charlie
the details you want to display can also be contained elsewhere if you want by using the index of the current slide to  match the index of another set of containers function onAfter(curr, next, opts) {              var index = opts.currSlide;            // use index to refernece other contai

[jQuery] Re: jQuery Cycle Plugin and Links

2009-07-21 Thread Mescalero
Thanks guys, Using that, this is what i have: $(function() { $('#slides').before('').cycle({ fx: 'fade', speed: 'fast', timeout: 0, pager: '#nav', after: onAfter }); }); f

[jQuery] Re: jQuery Cycle Plugin and Links

2009-07-20 Thread Mike Alsup
> I would like to add another attribute to the img tag called "link." > > This attribute would define where the image would link to if someone > clicks the image. > > Then i could do something like: .append('' + this.alt + ' Read more ›'); > > Does anyone know what/where i can add in the cycle js

[jQuery] Re: jQuery Cycle Plugin and Links

2009-07-20 Thread Charlie
you can use the "before" and "after" options in the API to write functions that trigger on each slide to do what you want Mescalero wrote: I would like to add another attribute to the img tag called "link." This attribute would define where the image would link to if someone clicks the i

[jQuery] Re: jQuery cycle plugin pager not working in FF and Safari

2009-07-01 Thread Jason
Thanks! Problem solved. It is always the simple things. I appreciate the help. On Jul 1, 8:54 am, Mike Alsup wrote: > > I am having an odd error where the pager generates links but they > > don't change the slide in FF and Safari. The biggest surprise of all > > is that it actually works in IE.

[jQuery] Re: jQuery cycle plugin pager not working in FF and Safari

2009-07-01 Thread Mike Alsup
> I am having an odd error where the pager generates links but they > don't change the slide in FF and Safari. The biggest surprise of all > is that it actually works in IE. > > Here is the page I am referring to:http://76.12.208.222/ Try this: #slideshowPage { position: relative: z-index: 100;

[jQuery] Re: jquery cycle - go to image (regardless of position)

2009-06-22 Thread Mike Alsup
> Is there any way to use something like go to and always have it go to > a particular image regardless of the slide's position in the cycle?  I > am adding images to the slideshow and every time I add one - the IDs > change so that go-to #7 is the seventh slide - regardless of what it > actually

[jQuery] Re: JQuery Cycle Plugin Problems with IE7

2009-06-15 Thread rjonker
I am having the exact same issue. On firefox and safari the cycle woks fine. In ie7 the images are displayed beneath each other. I hope someone will reply :) Cheers, Robert On 8 jun, 14:00, buschii wrote: > Hi folks, > > I am new here and I seached vor problems with IE7 and JQuery Cycle > Plug

[jQuery] Re: JQuery Cycle Plugin Problems with IE7

2009-06-15 Thread Mike Alsup
slideExpr: null, Trailing commas in arrays cause JavaScript errors in IE. Please enable debugging in your browser so that you can see these errors reported on the status bar. On Jun 8, 8:00 am, buschii wrote: > Hi folks, > > I am new here and I seached vor problems with IE7 and JQuery Cyc

[jQuery] Re: jQuery cycle plugin help

2009-06-09 Thread Mike Alsup
> I have been using jQuery cycle plugin for a banned with some content > that fades in and out in a slideshow sort of thing but I would like to > be able to div individually. Rather than saying all instances of > #projects become a slide, i would like #project_img, #project_title > and #project_de

[jQuery] Re: jQuery Cycle Plugin - Prev/Nex inside loop container

2009-06-04 Thread Thomas Arie Setiawan
2009/6/3 Arie : > > Hello, > > I tried to use Cycle Plugin, and it works great. I have the "Previous > and Next" navigation work without any problem. > > This is the code I have: > > - > > $(function() { > $('#feat-container').cycle({ > prev:   '#prev', > next:   '#next', > timeou

[jQuery] Re: JQuery Cycle Plugin, all images in pool showing up when page loads

2009-06-01 Thread Karl Swedberg
Oops. Sorry I misspelled your name, Adrian. --Karl On Jun 1, 2009, at 3:58 PM, Karl Swedberg wrote: On Jun 1, 2009, at 2:27 PM, Adrian Chen wrote: Use CSS to control the initial display of the images. How would that be done? Right now this is what I'm using .pics { height: 220p

[jQuery] Re: JQuery Cycle Plugin, all images in pool showing up when page loads

2009-06-01 Thread Karl Swedberg
On Jun 1, 2009, at 2:27 PM, Adrian Chen wrote: Use CSS to control the initial display of the images. How would that be done? Right now this is what I'm using .pics { height: 220px; width: 960px; margin-left: auto; margin-right: auto; } .pics img { width: 960px;

[jQuery] Re: JQuery Cycle Plugin, all images in pool showing up when page loads

2009-06-01 Thread Adrian Chen
Found how how to do it: .pics { width: 960px; height: 220px; margin-left: auto; margin-right: auto; overflow: hidden; } .pics img { width: 960px; height: 220px; } overflow: hidden did the trick. Thanks! On Jun 1, 1:27 pm, Adrian Chen wrote: >

[jQuery] Re: JQuery Cycle Plugin, all images in pool showing up when page loads

2009-06-01 Thread Adrian Chen
> Use CSS to control the initial display of the images. How would that be done? Right now this is what I'm using .pics { height: 220px; width: 960px; margin-left: auto; margin-right: auto; } .pics img { width: 960px; height: 220px; }

[jQuery] Re: JQuery Cycle Plugin, all images in pool showing up when page loads

2009-06-01 Thread Mike Alsup
> I'm trying this Cycle Plugin, but whenever I load, lets say I have 5 > images in the rotation pool, they all show up (briefly) whenever the > page reloads, and then they dissapear (starting the rotation). > > Is there any way to avoid this? The images I'm using are 960 x 220, so > it pretty much

[jQuery] Re: jQuery Cycle Plugin: Implement Pager on existing navigation anchors

2009-05-31 Thread Mike Alsup
> I would like cycle to use my existing anchors These demos show how to use existing markup for the pager links: http://www.malsup.com/jquery/cycle/pager3.html http://www.malsup.com/jquery/cycle/pager4.html

[jQuery] Re: jQuery Cycle plugin (help show/hide slide shows on same page)?

2009-05-21 Thread MiD-AwE
Ok, I think I've got it. I am now setting up the second slide show at the click event and then showing it immediately following. Like this: [code]jQuery('#buttons [href]').click( function(){ var element = jQuery(this); var href=element.attr("href"); jQuery('#

[jQuery] Re: jQuery Cycle plugin (help show/hide slide shows on same page)?

2009-05-21 Thread MiD-AwE
Ok, http://mid-awe.com/webs/presidential/index.html I'm noticing also now that an additional #s2 slide show is missing from the initial page load. I'll look at that to see if the issues are related. Any help is greatly appreciated. > Can you post a link to your test page?

[jQuery] Re: jQuery Cycle plugin (help show/hide slide shows on same page)?

2009-05-21 Thread Mike Alsup
> Just to clarify; I have two slide shows using the cycle plugin. They > are both set to display using the same css. Only one should display at > a time, I want the page to load with one shown and the other hidden, > then after a link is clicked the slide shows should toggle to display > the previ

[jQuery] Re: jQuery Cycle plugin (help show/hide slide shows on same page)?

2009-05-20 Thread MiD-AwE
Just to clarify; I have two slide shows using the cycle plugin. They are both set to display using the same css. Only one should display at a time, I want the page to load with one shown and the other hidden, then after a link is clicked the slide shows should toggle to display the previously hidd

[jQuery] Re: jquery cycle plugin - first cycle not in correct position unless you reload the site

2009-05-15 Thread Mike Alsup
> Thanks for your help the issue is solved. One question to Mike: on the > jqery site the newest version is 2.34, why did you not put your actual > version 2.63 - the one that solved my problem - to the jquery site? Fair question - sorry about the confusion. I don't update that page very often b

[jQuery] Re: jquery cycle plugin - first cycle not in correct position unless you reload the site

2009-05-14 Thread flyfisherman
Hi Mike Hi Thomas Thanks for your help the issue is solved. One question to Mike: on the jqery site the newest version is 2.34, why did you not put your actual version 2.63 - the one that solved my problem - to the jquery site? Beside updating the cycle plugin I had to build an img class in my c

[jQuery] Re: jquery cycle plugin - first cycle not in correct position unless you reload the site

2009-05-14 Thread tsacre
Hello flyfisherman, Do you have solved the issues with the solution provided by Mike ? Thanks, Thomas On 14 mai, 00:16, Mike Alsup wrote: > 2.63 is the latest version of Cycle.  And your images do not have > width/height attributes. > > Mike > > On May 13, 5:42 pm, flyfisherman wrote: > > >

[jQuery] Re: jquery cycle plugin - first cycle not in correct position unless you reload the site

2009-05-13 Thread Mike Alsup
2.63 is the latest version of Cycle. And your images do not have width/height attributes. Mike On May 13, 5:42 pm, flyfisherman wrote: > Hello Mike > > I have the newest version 2.34 installed and I also gave a width und > height for the picture id in my css-file (view source code). > So what

[jQuery] Re: jquery cycle plugin - first cycle not in correct position unless you reload the site

2009-05-13 Thread flyfisherman
Hello Mike I have the newest version 2.34 installed and I also gave a width und height for the picture id in my css-file (view source code). So what else could it be? txs Markus On 13 Mai, 23:01, Mike Alsup wrote: > > I am using the cycle plugin on a start page to cycle 5 pictures in a > > div

[jQuery] Re: jquery cycle plugin - first cycle not in correct position unless you reload the site

2009-05-13 Thread Mike Alsup
> I am using the cycle plugin on a start page to cycle 5 pictures in a > div id "picture". The first load of the site the pictures are shown to > small (firefox) or outside the container (opera, safari Win), after a > reload all is ok!! > > I have no clue why this happens. Is there any advice? > >

[jQuery] Re: jQuery Cycle plugin - addslide (again)

2009-04-19 Thread ppblaauw
Ok, found the solution. I am not using the slideExpr but the parent of the container to add slides and it works. Also with the a pageranchorbuilder it works when I append the new pager items. What is missing is to keep track of images already loaded in the jQuery script to prevent that images ar

[jQuery] Re: jQuery Cycle plugin - addslide (again)

2009-04-17 Thread ppblaauw
Experimented some more: When I add opts.addSlide(ddblockGetSlideHTML(data.slideImg), fwd == false); The images are appended after the other images, but still not in the slideExpr When I add opts.$cont = '#ddblock-' + opts.ddblocknr + ' .ddblock-container'; before the addslide It puts the sl

[jQuery] Re: jQuery Cycle with Transparent GIFs...Works in FF, Safari...but not in IE

2009-04-16 Thread Andy Matthews
Well your first problem is using GIF files for those photographs in the first place. Photographs should ALWAYS be JPG files, or PNG if you need transparency. You can really notice the pixelation on the back end of the Ferrari, and the sides of the yellow and orange station wagon. But as for your

[jQuery] Re: jQuery Cycle with Transparent GIFs...Works in FF, Safari...but not in IE

2009-04-16 Thread Matt M.
I solved this one. I had to use these options: cleartype: false, cleartypeNoBg: false Works nicely. Thanks to Mike Alsup for a great plugin! On Apr 16, 12:06 pm, "Matt M." wrote: > Hello, > > I was wondering if anyone knew of a solution to be able to use > transparent .GIFs with the

[jQuery] Re: jQuery Cycle plugin - addslide (again)

2009-04-13 Thread ppblaauw
Maybe the issue is really addSlide in combination with slideExpr. When images are added they are prepended instead of appended. So the issue will be how to use slideExpr with addSlide. If more info is needed, please let me know On Apr 13, 8:12 am, ppblaauw wrote: > I read a lot of posts about

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-11 Thread Skinnyl
Thanks a lot! That's finally it... phew. I really appreciate your help.

[jQuery] Re: jQuery Cycle -- Thumbnail Paging

2009-04-11 Thread Chuck Harmston
Hi Amy, Do the thumbnails follow any naming convention? It wouldn't be terribly difficult to use a callback to replace the standard Cycle pager with thumbnails if we are easily able to determine the thumbnail URLs. Chuck Harmston http://chuckharmston.com On Fri, Apr 10, 2009 at 7:24 AM, amuhlou

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-10 Thread Mike Alsup
On Apr 10, 1:11 pm, Skinnyl wrote: > Hi > > Thanks so much for that it works perfectly... except... > > If I add a text filled div to be included in the cycle like this: > > >     >     >     >     >                 text text text >     > > > > ... Once i've cycled to 4 the 3 images disapp

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-10 Thread Skinnyl
Hi Thanks so much for that it works perfectly... except... If I add a text filled div to be included in the cycle like this: text text text ... Once i've cycled to 4 the 3 images disappear and only the text div works. I've used classes instead of IDs

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-10 Thread Mike Alsup
> Ok so i've solved it by changing all the tags and adding new scripts > for each one > > http://www.lukeskinnerdesigns.co.uk/jq-test.html > > It looks good but i'm concerned that i'm gonna have a huge amount of > css and javascript with all the different slideshows. > > So is there a better way t

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-10 Thread Skinnyl
Ok so i've solved it by changing all the tags and adding new scripts for each one http://www.lukeskinnerdesigns.co.uk/jq-test.html It looks good but i'm concerned that i'm gonna have a huge amount of css and javascript with all the different slideshows. So is there a better way to do it?

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-10 Thread Skinnyl
Thanks for your reply but no luck... That does bring up two sets of navs that work but they are both with the first #portfolio div as i mentioned in my fist post (situation 2) They work fine but in the wrong place.

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-09 Thread Ralph Whitbeck
I'm sorry in my previous reply replace the words portrait with the word portfolio ... sorry. Ralph On Fri, Apr 10, 2009 at 12:17 AM, Ralph Whitbeck wrote: > Hey Luke, > > You have two ID's with the same ID "portrait" You can only have one ID > named portrait on the page...name the other portrai

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-09 Thread Ralph Whitbeck
Hey Luke, You have two ID's with the same ID "portrait" You can only have one ID named portrait on the page...name the other portrait2 or something. In your jQuery code change $("#portrait")... to $(".pics")... Both will then work. Although there seems to be other issues both cycles now cycle.

[jQuery] Re: JQuery Cycle pluggin

2009-04-01 Thread Laegnur
Hi! Finally, I reject this effect. What I have done, is turn the Cycle in a non-flash intro for a client website. I leave here the code for it is useful to someone, or someone suggests some improvement. [code] ... $(document).ready(function() { $('#body').hover( function() { $('#contro

[jQuery] Re: JQuery Cycle

2009-03-31 Thread gmca...@gmail.com
I did notice that in IE7 it doesnt like png type images any reason for that ? On Mar 31, 8:37 am, "gmca...@gmail.com" wrote: > After rebooting everything works. Thanks :) > > On Mar 30, 9:23 pm, Mike Alsup wrote: > > > > Well even this doesnt work in IE...http://www.malsup.com/jquery/cycle/

[jQuery] Re: JQuery Cycle

2009-03-31 Thread gmca...@gmail.com
After looking at it the viewer in IE7 only seems to work with jpg. When i try to use gif or png it just clocks trying to load the images. In firefox it works fine tho... On Mar 31, 8:37 am, "gmca...@gmail.com" wrote: > After rebooting everything works. Thanks :) > > On Mar 30, 9:23 pm, Mike

[jQuery] Re: JQuery Cycle

2009-03-31 Thread gmca...@gmail.com
Actually i tried to run it in IE again a few minutes ago and its doing the same thing. on the code i wrote and the original site. IT just sits there and tries to load the pictures. I can see the animation happening but its just empty pics... ? any other ideas ??? On Mar 31, 8:37 am, "gmca...@gmai

[jQuery] Re: JQuery Cycle

2009-03-31 Thread gmca...@gmail.com
After rebooting everything works. Thanks :) On Mar 30, 9:23 pm, Mike Alsup wrote: > > Well even this doesnt work in IE...http://www.malsup.com/jquery/cycle/ > > > Which isn't my code obviously... only the > > first pic loads, it says in the status bar the other images are > > loading in IE > > s

  1   2   3   >