[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 Plugin width problems

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

[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 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 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 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 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 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 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 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 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 Plugin

2009-03-17 Thread Mike Alsup
>         $('#imgBox').after('').cycle({ >                 fx:'fade', >                 timeout:4000, >                 speed:1500, >                 pager:  '#imgCycle', >                 pagerAnchorBuilder: function(idx, slide) { >                         return ' href="#">img'+idx+''; >        

[jQuery] Re: jquery cycle plugin. paging multiple divs.

2009-03-12 Thread linzprod
Hey Mike, thanx for your answer. I put the two divs into one and positioned the elements with css. it works now. On 16 Feb., 13:22, Mike Alsup wrote: > > $('#gastroThumbs').cycle({ > >                 fx:    'fade', > >                 speed:  500, > >                 timeout: 0, > >          

[jQuery] Re: jquery cycle plugin. paging multiple divs.

2009-03-12 Thread linzprod
Hey Mike, thanx for your answer. I put the two divs into one and positioned the elements with css. it works now. On 16 Feb., 13:22, Mike Alsup wrote: > > $('#gastroThumbs').cycle({ > >                 fx:    'fade', > >                 speed:  500, > >                 timeout: 0, > >          

[jQuery] Re: jquery cycle plugin. paging multiple divs.

2009-02-16 Thread Mike Alsup
> $('#gastroThumbs').cycle({ >                 fx:    'fade', >                 speed:  500, >                 timeout: 0, >                 next:   '#next', >                 pager: '#thumbNav' >         }), >         $('#gastroBilder').cycle({ >                 fx:    'fade', >                 s

[jQuery] Re: jquery cycle plugin issue

2009-02-10 Thread Mike Alsup
> I'm having a problem with cycle which refuses to see the links I have > put in the divs. > When I click on my links it just move on the next slide (next div) > I don't now how to fix this problem. > I have seen there is a parameter "pagerAnchorBuilder: null" ... maybe > there is any chance > to

[jQuery] Re: Jquery cycle plugin - YouTube videos

2009-02-04 Thread Ado
Still no joy, very frustrating :( Although Im no expert... Would really appreciate to hear from anyone who has had a similar issue, and if they ever found a fix... A. On Feb 3, 5:51 pm, Ado wrote: > Thanks for looking, cant see much on Google at the moment apart from > people having similar

[jQuery] Re: Jquery cycle plugin - YouTube videos

2009-02-03 Thread Ado
Thanks for looking, cant see much on Google at the moment apart from people having similar problems with flash video when they try and make it display:none (which is esentially cycle plug-in is doing) Anybody else have any code for this? I will keep hunting and post back here if I come across any

[jQuery] Re: Jquery cycle plugin - YouTube videos

2009-02-03 Thread Mike Alsup
> I dont suppose you have a quick demo, or code to hand to show me how > this would be done. Would be most appreciated... Hmm, I thought I did but can seem to find it. It depends what functions are exposed on the element so you may want to google it. Maybe someone else will chime in with a sugge

[jQuery] Re: Jquery cycle plugin - YouTube videos

2009-02-03 Thread Ado
Thanks Mike. I dont suppose you have a quick demo, or code to hand to show me how this would be done. Would be most appreciated... Adi On Feb 3, 4:46 pm, Mike Alsup wrote: > > Im trying to create a rotating promo area using the cycle plug-in. > > > I have to to embed YouTube videos (example

[jQuery] Re: Jquery cycle plugin - YouTube videos

2009-02-03 Thread Mike Alsup
> Im trying to create a rotating promo area using the cycle plug-in. > > I have to to embed YouTube videos (example > herehttp://www.grouptools.com/adrian/sbc-new/promo/) > > The main issue is FF works fine in that if a video is playing and you > go to another 'slide' the video/sound stops. Where

[jQuery] Re: JQuery Cycle Plugin: 2 tiny glitches

2009-01-25 Thread acuitas
Mike Perfect advice. You're awsome. Works now. Thank you. acuitas On Jan 25, 12:55 pm, Mike Alsup wrote: > > Can someone help? I have two problems. Both I think are tiny. > > > First problem: I'm almost done successfully installing the Cycle > > plugin. > > If you use FireFox to go here: > > >

[jQuery] Re: JQuery Cycle Plugin: 2 tiny glitches

2009-01-25 Thread Mike Alsup
> Can someone help? I have two problems. Both I think are tiny. > > First problem: I'm almost done successfully installing the Cycle > plugin. > If you use FireFox to go here: > > http://acuitas.com/index.php > > then click on the Refresh button, you'll see it works great. > Please tell me why I n

[jQuery] Re: jQuery Cycle Plugin: 1 pager to control 2 slideshows

2008-12-22 Thread Mike Alsup
> wow that works awesome. even able to apply it to several cycles. i saw > a posting about applying a delay to several cycles so that one starts > a couple seconds after another cycle (http://groups.google.com/group/ > jquery-en/browse_thread/thread/fa74609bb63f46a/40f0bec91d0c6574? > lnk=gst&q=jq

[jQuery] Re: jQuery Cycle Plugin: 1 pager to control 2 slideshows

2008-12-22 Thread Neil
wow that works awesome. even able to apply it to several cycles. i saw a posting about applying a delay to several cycles so that one starts a couple seconds after another cycle (http://groups.google.com/group/ jquery-en/browse_thread/thread/fa74609bb63f46a/40f0bec91d0c6574? lnk=gst&q=jquery+cycle

[jQuery] Re: jQuery Cycle Plugin: 1 pager to control 2 slideshows

2008-12-13 Thread Mike Alsup
> I have been searching for a way to have 1 pager to control 2 > slideshows with the same number of slides. Where one slideshow can > have a scrollLeft and another just with a fade. Is this possible with > the current plugin? Here's a demo: http://jquery.malsup.com/cycle/pagers.html

[jQuery] Re: Jquery Cycle Plugin Problem

2008-11-10 Thread Mike Alsup
> But if you could test in a pentium, the cpu ups to 90-100% and the > memory will increase until the pc will block. I had tested in 2 > different pc ( more than 15 minutes but it´s a problem if you have the > window open). Yes, as I mentioned, JavaScript animation is very CPU intensive. If you'

[jQuery] Re: Jquery Cycle Plugin Problem

2008-11-10 Thread Jorge
On 7 nov, 19:00, Mike Alsup <[EMAIL PROTECTED]> wrote: > > There is a problem with pc memmory when the plugin is working ( Tested > > in a few pcs). At Least you need a 2 core duo for a not problem > > experiencie, but try in a pentium  4 with 1gb of ram... and you will > > Khnow. > > Open the tas

[jQuery] Re: Jquery Cycle Plugin Problem

2008-11-07 Thread Mike Alsup
> There is a problem with pc memmory when the plugin is working ( Tested > in a few pcs). At Least you need a 2 core duo for a not problem > experiencie, but try in a pentium  4 with 1gb of ram... and you will > Khnow. > Open the task administrator and test de memmory. It's not clear to me wheth

[jQuery] Re: jquery cycle plugin problem?

2008-11-06 Thread Netherscurial
Thanks Mike, I got it working, i have to add inline widths to the first slide for the background endcap containers. The IE 6 problem is frustrating. The CSS looks fine. Could you take a look at the CSS and code to see if I am doing ti right? I have this for js call $('#s7').cycle({

[jQuery] Re: jquery cycle plugin problem?

2008-11-06 Thread Mike Alsup
> Explorer 7 there seems to be a graphic glitch on the initial slide/ > frame, the top header looks like it is overwriting part of the box,   > same with bottom. It's fine after the first frame. > > In Explorer 6, there is a blue background that is showing behind the   > testimonial box. Hmm, I d

[jQuery] Re: jquery cycle plugin problem?

2008-11-06 Thread Netherscurial
I solved the problem in IE 7, it seems the top and bottom divs/spans that contains the background image were collapsing width wise, so I have to add a width inline on the first slide to get it to work. I am still having trouble with the blue background problem in IE 6. It seems that the backgroun

[jQuery] Re: jQuery Cycle Plugin: 'Cover'ing random width slides from the right

2008-07-11 Thread juro
Hi Mike, Absolutely awesome! That is exactly what I wanted. It seems that I didn't quite understand the custom transition effects, I was trying to alter the position with $(curr).outerWidth() Now where was that Paypal button Warm regards juro On Jul 11, 11:12 pm, Mike Alsup <[EMAIL PR

[jQuery] Re: jQuery Cycle Plugin: 'Cover'ing random width slides from the right

2008-07-11 Thread Mike Alsup
> > I have been trying to get a certain effect using the jQuery.cycle > > plugin but have falied miserably. > > > Similar to the top example on this page: > > >http://www.malsup.com/jquery/cycle/cover2.html > > > I want to cover the images from right to left. The only (and > > substantial) differe

[jQuery] Re: jQuery Cycle Plugin: 'Cover'ing random width slides from the right

2008-07-11 Thread Mike Alsup
> I have been trying to get a certain effect using the jQuery.cycle > plugin but have falied miserably. > > Similar to the top example on this page: > > http://www.malsup.com/jquery/cycle/cover2.html > > I want to cover the images from right to left. The only (and > substantial) difference to the

[jQuery] Re: jQuery Cycle Plugin Pager mode

2008-06-27 Thread greencode
Many thanks fort the extra links. I shall have a good old play with this over the weekend. Great Plugin btw. On Jun 27, 12:23 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > Here are some links: > > http://www.malsup.com/jquery/cycle/pager2.htmlhttp://www.malsup.com/jquery/cycle/pager3.html > > On Ju

[jQuery] Re: jQuery Cycle Plugin Pager mode

2008-06-27 Thread Mike Alsup
Here are some links: http://www.malsup.com/jquery/cycle/pager2.html http://www.malsup.com/jquery/cycle/pager3.html On Jun 27, 4:15 am, greencode <[EMAIL PROTECTED]> wrote: > Does anyone know how I can change the links to text links rather than > continuous numbers? I'm new to all of this and can

[jQuery] Re: jQuery cycle plugin crash in IE7

2008-06-05 Thread Mike Alsup
> I have a portfolio page with multiple slideshows (there are four tabs > and each tab displays a different slideshow). All is well in Mozilla, > but after a couple of clicks to change the tabs in IE, it chrashes. I > have tried placing the code in the body of HTML, but still get the > same crash!

[jQuery] Re: jQuery Cycle plugin - avoiding preloading large number of images?

2008-05-22 Thread Mike
Another Mike ... sounds like I'm talking to myself! Thanks very much for that note. I think that approach will work - I might have to be a bit creative, and set up some way for the Cycle plugin to request more slideshow items when it needs them, but this is an extremely good start. Just what I ne

[jQuery] Re: jQuery Cycle plugin - avoiding preloading large number of images?

2008-05-22 Thread Mike
> I have a problem with the Cycle plugin (jQuery-based > slideshow,http://malsup.com/jquery/cycle/) that I hope someone here can help > me > out with. > > Currently, Cycle loads all the images up front. That's a problem for > me - the slideshow I'm working on may have a very large number of > im

[jQuery] Re: jQuery Cycle plugin : how to show three images in slider at the time

2008-05-13 Thread Josh Nathanson
It sounds like maybe you want a carousel effect rather than cycle. I think jCarousel is the most popular carousel plugin. -- Josh - Original Message - From: "danieluis" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Tuesday, May 13, 2008 11:50 AM Subject: [jQuery] jQuery Cycle

[jQuery] Re: jQuery Cycle Plugin pager option

2008-04-29 Thread Eddie
Hi Donna, According to your pager selector ("#nav") its markup, you should use the pagerAnchorBuilder option like this: $(document).ready(function(){ $('#featuretabs').cycle({ fx: 'turnLeft', speed: 'fast', timeout: 0, pager: '#nav',

[jQuery] Re: jquery cycle plugin - displaying certain data problem

2008-04-24 Thread MiG
Argh! So simple and such a big problem when you don't know what to do! :) Thanks for a fast reply, the problem is solved.

[jQuery] Re: jquery cycle plugin - displaying certain data problem

2008-04-24 Thread Mike Alsup
> I am havim problems with the jquery cycle plugin (http:// > www.malsup.com/jquery/cycle/int2.html - the one titles "Callbacks". I > modified it a bit so that it displays my, a bit larger images. Now, I > do not want it to display the code which prints out the code needed > the plugin to work

[jQuery] Re: Jquery cycle plugin and images included dynamically

2008-04-17 Thread jawosis
Sorry for the bad description Diego! In fact I also assumed that the currently (not explicitly) hidden divs that the ScrollUp function scrolls in during the cycle are having this image size problem because of being asigned to visibility:hidden. But I didn't declare a visibility explicitly - I jus

[jQuery] Re: Jquery cycle plugin and images included dynamically

2008-04-12 Thread Diego A.
I am finding it hard to understand your problem, but I'm guessing it may be because when the image is hidden, the cycle plugin cannot find its dimensions (hidden elements have dimensions 0x0). Instead of display:none, have you considered off-screen positioning or visibility:hidden instead? Diego

[jQuery] Re: jQuery Cycle Plugin help needed

2008-02-16 Thread diggnate
You're absolutely right ... I knew it was going to be something simple that I'm too dense to catch! :-) Thanks so much!!! Nathan On Feb 16, 8:53 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > it looks like I'm a little late to the game on this thread, but I > > found it via google, and you guy

[jQuery] Re: jQuery Cycle Plugin help needed

2008-02-16 Thread Mike Alsup
> it looks like I'm a little late to the game on this thread, but I > found it via google, and you guys seem to know what you're talking > about :-) > > I'm trying to get this to work on a WordPress theme that I'm > developing for my site, but for some reason it just won't work. I'm > new to jQuer

[jQuery] Re: jQuery Cycle Plugin help needed

2008-02-16 Thread diggnate
it looks like I'm a little late to the game on this thread, but I found it via google, and you guys seem to know what you're talking about :-) I'm trying to get this to work on a WordPress theme that I'm developing for my site, but for some reason it just won't work. I'm new to jQuery, but this

[jQuery] Re: jQuery Cycle Plugin help needed

2008-02-16 Thread diggnate
testing ... On Jan 25, 6:18 pm, visitorQ <[EMAIL PROTECTED]> wrote: > thanks mike i'll try that and get back to you guys! you're all > great > > On Jan 25, 3:40 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > > > image and have it say 'read article >' and a user could click it. then > > > whe

[jQuery] Re: jQuery Cycle Plugin delay problem

2008-02-04 Thread McEdonskiy
BIG Thanx Mike I change code: $(document).ready(function() { $('#news').cycle({ fx:'scrollLeft', slideExpr: 'p', speed: 1000, delay: 100,

[jQuery] Re: jQuery Cycle Plugin delay problem

2008-02-03 Thread Mike Alsup
> > Sorry for my bad english. > I use jQuery Cycle Plugin > http://www.malsup.com/jquery/cycle/ > > it work very well, but i could not change delay option > > $(document).ready(function() { >$('#news').cycle({ >fx:'scrollLeft', >

[jQuery] Re: jQuery Cycle Plugin help needed

2008-01-25 Thread visitorQ
thanks mike i'll try that and get back to you guys! you're all great On Jan 25, 3:40 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > image and have it say 'read article >' and a user could click it. then > > when the image fades, the link does also, until the next image fades > > in, with it'

[jQuery] Re: jQuery Cycle Plugin help needed

2008-01-25 Thread Mike Alsup
> > image and have it say 'read article >' and a user could click it. then > when the image fades, the link does also, until the next image fades > in, with it's own text link to its own article. i'm not having much > luck since i need to write each link it's own class in the stylesheet > because t

[jQuery] Re: jQuery Cycle Plugin help needed

2008-01-25 Thread visitorQ
yeah thanks to mike for a friggin awesome plugin! i'm glad you liked checking out the labradoodles! this site is for a friend of mine. they sold tiger woods his labradoodle! awesome huh? they're beautiful dogs. anyway, i'm having one more little issue. everything works GREAT, but i want to add so

  1   2   >