[jQuery] Re: Cycle plugin postback problem in ASP.Net

2009-12-08 Thread Mike Alsup
View the markup after the postback (use firebug). I can almost guarantee there are extra elements in the slideshow container, perhaps brs or empty paragraphs or something. Post a link if you can. Mike On Dec 7, 11:31 pm, Michael mikedr...@gmail.com wrote: Anyone have an ideas or advice?

[jQuery] Re: Cycle plugin postback problem in ASP.Net

2009-12-07 Thread Michael
Anyone have an ideas or advice? Mike On Dec 1, 9:10 am, Michael mikedr...@gmail.com wrote: Hi Everyone! I have encountered an issue trying to use the cycle plugin to show a very simple image slideshow in ASP.Net. I have the cycle plugin in a master page and it works great until a postback is

[jQuery] Re: Cycle plugin won't start until all images have loaded (IE-only)

2009-11-13 Thread Mike Alsup
When using the cycle plugin to display a slideshow in IE(6/?), it won't start playing until all of the images have completely loaded. This causes a delay of 5-15 seconds depending on the size and quantity of images. There's no such problem with non-IE web browsers, however, all of which start

[jQuery] Re: Cycle plugin with link functionality

2009-11-11 Thread Mike Alsup
Hi, I have the cycle plugin setup so a series of thumbnails of the image switch the bigger image upon mouseover.  Much like this example...http://www.malsup.com/jquery/cycle/pager6.html except mine works by hovering over the thumbs like: .cycle({         fx:     'fade',         speed:  

[jQuery] Re: Cycle plugin with link functionality

2009-11-11 Thread zac
Thanks for the response Mike.. could you please show me an example as I am not clear on this... On Nov 11, 1:04 pm, Mike Alsup mal...@gmail.com wrote: Hi, I have the cycle plugin setup so a series of thumbnails of the image switch the bigger image upon mouseover.  Much like this

[jQuery] Re: Cycle plugin with link functionality

2009-11-11 Thread zac
nevermind.. i figured it out On Nov 11, 1:08 pm, zac zacharyf...@gmail.com wrote: Thanks for the response Mike.. could you please show me an example as I am not clear on this... On Nov 11, 1:04 pm, Mike Alsup mal...@gmail.com wrote: Hi, I have the cycle plugin setup so a series of

[jQuery] Re: Cycle plugin issue in Safari Chrome

2009-10-21 Thread poundcommapo...@gmail.com
An update - I've been told it's happening on Firefox in most cases as well. I have v3.5.3 on a PC and that works fine, though I've been told the same issue happens on 3.0 on a PC and I've seen it for myself on 3.5.3 on a Mac. http://staging.pixelluxe.com/tt/child.html

[jQuery] Re: Cycle plugin issue in Safari Chrome

2009-10-21 Thread Mike Alsup
Slideshows work best when you declare the image sizes using the height and width attrs. When the images are cached it's not a problem because the browser knows the dimensions of the image, but if the images are not cached there is a reasonable chance that your slideshow will start before the

[jQuery] Re: Cycle plugin issue in Safari Chrome

2009-10-21 Thread poundcommapo...@gmail.com
I see. My gotcha on this is that the images are user-submitted, so while I have a width set for them, the height is going to be variable. I wrapped the function that calls cycle in a $(window).load function to wait until images have loaded, and that seems to have fixed me right up. Thanks much.

[jQuery] Re: Cycle plugin: centering images of variable width?

2009-10-18 Thread Mike Alsup
A better way to approach this is to wrap the images in divs and then cycle the divs. You can then count on it working correctly for all the transition effects. http://jquery.malsup.com/cycle2/center-horz.html Mike On Oct 17, 4:25 pm, David Collins floyd1...@gmail.com wrote: I didn't see

[jQuery] Re: Cycle plugin: centering images of variable width?

2009-10-18 Thread David Collins
Thanks for the reply, Mike. It never occurred to me to cycle something other than the actual image. I will take a look at this approach. -David

[jQuery] Re: Cycle Plugin -- Multiple Divs manipulated with one pager

2009-10-13 Thread Mike Alsup
Hey all -- I've built a site that has two divs with variable content (eventually this will become 3, but I assume it will scale up to that with no major issues). I'd like to be able to change content with each of them using the same pager. Here's an example of how to do this:

[jQuery] Re: Cycle Plugin not working in IE - who can help?

2009-10-09 Thread Mike Alsup
Remove the comma at the end of this line: prev: '#prev' , trailing commas at the end of an array are not allowed in IE 6/7. Also, next time please post a link instead of all your markup if possible. Cheers! Mike On Oct 9, 4:45 am, First Impression dancollin...@googlemail.com wrote:

[jQuery] Re: Cycle Plugin not working in IE - who can help?

2009-10-09 Thread First Impression
:O Thank you a thousand times Mike, you have made my life a lot easier!!! I have learnt my lesson for future reference. Dan On Oct 9, 12:22 pm, Mike Alsup mal...@gmail.com wrote: Remove the comma at the end of this line:  prev:   '#prev' , trailing commas at the end of an array are not

[jQuery] Re: cycle plugin and dropdown menu

2009-09-25 Thread Karl Swedberg
Hi Vitto, Add these declarations to your ul#mainNav rule (main.css, line 149) position: relative; z-index: 50; For IE, you'll probably also need to add these to div#content (main.css, line 26) position: relative; z-index: 1; --Karl Karl Swedberg www.englishrules.com

[jQuery] Re: cycle plugin and dropdown menu [solved]

2009-09-25 Thread hcvitto
great!! Many thanks Karl!! Vitto On 25 Set, 15:45, Karl Swedberg k...@englishrules.com wrote: Hi Vitto, Add these declarations to your ul#mainNav rule (main.css, line 149)    position: relative;    z-index: 50; For IE, you'll probably also need to add these to div#content   (main.css,

[jQuery] Re: Cycle plugin creating links

2009-08-29 Thread Charlie
Several methods: Simplest is put an a tag around each image in your markup. Alternate method- create array of the url's and bind a click handler to images. Index the images to the url array and the window function you want such as open() for a new tab. Will need to modify cursor in CSS for

[jQuery] Re: Cycle plugin creating links

2009-08-29 Thread Mike Alsup
I would like to link each image in the cycle to a specific page. Any ideas on how to do this? I got it to cycle and everything is working fine. I just want it so that the actual image is clickable. Here's an example: http://www.malsup.com/jquery/cycle/anchor.html

[jQuery] Re: Cycle plugin: problem showing slide titles in pager (using pagerAnchorBuilder function)

2009-08-28 Thread lumpysimon
Hi Mike Thank you very much for your suggestion, but that's not working either I'm afraid - I still end up with just a blank space where I'd like the title to appear. (I also noticed that your method seems to strip the closing tag from the #cycle-numbers div too, although I can't for the life

[jQuery] Re: Cycle plugin: problem showing slide titles in pager (using pagerAnchorBuilder function)

2009-08-26 Thread Mike Alsup
This question has been asked several times in various places online, but the solution that's usually given isn't working for me. I want to show the slide titles (rather than just numbers) in the pager, so am calling it like this: jQuery(document).ready(function() {        

[jQuery] Re: Cycle Plugin - Different Transition Effects for Pager and Auto-Advance?

2009-08-26 Thread Mike Alsup
Is it possible to use enable different transition effects for auto- advance versus the pager (that is, when a user clicks a pager item)? I'd like very much to use fade as images auto-advance without user input, but use a more advanced easing effect if the user clicks an item in the pager.

[jQuery] Re: cycle plugin questions

2009-08-16 Thread Charlie
apply overflow: hidden to container and try using synch: 1 in script. ckee wrote: I have a cycle working here: http://www.violinatta.com/node/19 Two questions: (1) initially more than one image shows, one under the other, eventually consolidating to 1. The container and images are both

[jQuery] Re: Cycle Plugin - Changing the options of the cycle

2009-08-14 Thread Mike Alsup
I define a cycle in document.ready as per usual.  In my cycle I have different sets of images that i want to cycle through and only want certain ones to cycle as selected using the slideExpr option.  Is there a way to change this option from: slideExpr: 'a' to: slideExpr: 'b' Nope. But

[jQuery] Re: Cycle Plugin - Changing the options of the cycle

2009-08-14 Thread Z-Ender
Thanks for the response. But you could stop and then restart the slideshow with a diff slideExpr. I'm not sure if I understand how to do that. Am I recreating the cycle to set the new slideExpr like this? $(#chg).click(function(){ $('#show).cycle('stop'); $('#show).cycle({ fx: 'scrollHorz' ,

[jQuery] Re: Cycle Plugin - Changing the options of the cycle

2009-08-14 Thread Z-Ender
Also maybe I don't understand what slideExpr does but I thought it didn't look at child elements. I've set it to slideExpr: div and i have nested div tags. ex div table/ div/ /div div table/ div/ /div this renders as 4 slides when i set slideExpr. Is this expected behavior? I think what

[jQuery] Re: Cycle Plugin - Changing the options of the cycle

2009-08-14 Thread Z-Ender
My solution was to show/hide one of 2 cycles, depending on which one i needed, using .css('display', 'none') and .fadeIn. Once it was hidden i stopped the cycle i hide and use .fadeIn to show the one i want. Then it is started. Both cycles use the same pager, next, and prev options. The pager

[jQuery] Re: Cycle Plugin Error in IE

2009-08-13 Thread Dan
Sorry *embarrassed - stray comma after pagerFactory. Problem solved. Hi, I seem to have the jQuery cycle plugin working in most browsers, but get an error in IE6/7 when using the following code: script type=text/javascript     $(function() {       $('#slideshow')         .cycle({      

[jQuery] Re: (Cycle Plugin) ScrollHorz problem in FF and Safari 3

2009-08-03 Thread bcbounders
Mike, Thanks! Sorry for the long delay... I got side-tracked by having to move my 74 year old mother-in-law into her new house! UGGGH! Anyway... this looks like it's doing the trick. I really appreciate your help. - John On Jul 25, 8:00 am, Mike Alsup mal...@gmail.com wrote: On Jul 21,

[jQuery] Re: Cycle Plugin: Pause the cycle from link withing the cycling content?

2009-07-25 Thread Mike Alsup
I have set up a cycle that contains a html contentent including a 'video playlist'. This is a javascript based list that updates a flash video player with a new video inside the cycle. The videos are loading fine, but for some reason when i call the cycle 'pause', it dosent work? i have

[jQuery] Re: (Cycle Plugin) ScrollHorz problem in FF and Safari 3

2009-07-25 Thread Mike Alsup
On Jul 21, 9:51 pm, bcbounders bcbound...@gmail.com wrote: When using the ScrollHorz effect in the Cycle Plugin for inline HTML content, in Firefox and Safari 3, the very first time you trigger the transition, the content of the first slide appears to be being squished and ends up overlapping

[jQuery] Re: Cycle Plugin: Pause the cycle from link withing the cycling content?

2009-07-21 Thread Charlie
looked at this a couple of times ,,have you tried working with the cleartypeNoBg option" have seen other posts where things have been resolved using cleartypeNoBg: false welshy1984 wrote: I am having an issue with pausing the cycle from links within the cycle. I have set up a cycle

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-27 Thread Erik R. Peterson
Auuugh! This is so frustrating.. I can't get this to work. Erik On Jun 26, 2009, at 9:16 PM, Charlie wrote: take a look at this demo http://malsup.com/jquery/cycle/goto2.html would this work better for you? Change the inputs to a ul and insert your images? Add functions to change

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-26 Thread Charlie
look through the examples some more, there's quite a few of them with image rollovers. Then look through the options API and see how to customize them to do almost whatever you are needing http://www.malsup.com/jquery/cycle/pager6.html Erik R. Peterson wrote: Is it possible to use image

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-26 Thread Erik R. Peterson
I'm confused. these are images from the slides being used in the Cycle. What if I wanted to use GIF's that are not related to the images? Would something like this work in the CSS? #nav a {width:27px; height:27px; padding: 10px 10px 10px 10px; margin: 0px 0px 0px 10px;background:

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-26 Thread Charlie
I did one similar to what you are trying to do using looped slider . I wanted the pagination images , which were different than the slide images, to do a hover type effect of highlighting the active one. I put an image directly into the a tag and the corresponding off image in background.

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-26 Thread Erik R. Peterson
Could you take a look at my page? http://www.enaturalskin.com Erik On Jun 26, 2009, at 6:31 PM, Charlie wrote: I did one similar to what you are trying to do using looped slider . I wanted the pagination images , which were different than the slide images, to do a hover type effect of

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-26 Thread Charlie
take a look at this demo http://malsup.com/jquery/cycle/goto2.html would this work better for you? Change the inputs to a ul and insert your images? Add functions to change class on active image if you want to do any css to active pager image. I'm pretty sure you can use options "before" and

[jQuery] Re: Cycle Plugin Help - Image Anchors

2009-06-26 Thread Erik R. Peterson
Thank you... Your suggestion... Will it remove the numbers? Erik On Jun 26, 2009, at 9:16 PM, Charlie wrote: take a look at this demo http://malsup.com/jquery/cycle/goto2.html would this work better for you? Change the inputs to a ul and insert your images? Add functions to change

[jQuery] Re: cycle plugin image positioning issue

2009-06-20 Thread MiD-AwE
I recently ran into a similar situation where all slide shows other than the first was not displaying properly since they are written into the page after a mouse click on link like: $('#div').html($(href).html ()); So, since the first cycle slide show worked fine with css width:

[jQuery] Re: cycle plugin pagerAnchorBuilder

2009-06-16 Thread Jon Crump
OK, there were no takers on this. In the unlikely event that anyone's interested, here's the work-around that I arrived at. It's simple enough that I think it will not cause me any problems, but I sure would like to know what the right solution might be. In the HTML, an image collection like

[jQuery] Re: cycle plugin pagerAnchorBuilder

2009-06-16 Thread Mike Alsup
        ul id=clientList                 lia href=#Foo text/a/li                 lia href=#Bar text/a/li                 lia href=#Baz text/a/li         /ul If anybody has a cleaner solution, I'd sure love to know about it. This is what I'd do: ul id=clientList lia href=#

[jQuery] Re: cycle plugin pagerAnchorBuilder

2009-06-16 Thread Jon Crump
Mike Alsup, Thanks so much for pointing out the obvious; no really, I mean it sincerely. I so often overlook the obvious, to my cost. I didn't realize that I could simply pass a bare integer to the cycle call. Admiration and gratitude for a wonderfully well thought out and effective tool!

[jQuery] Re: Cycle plugin help

2009-06-10 Thread Charlie
have you looked at the "even more advanced demos" on cycle site? If ever there was a plugin with a large variety of examples Cycle is it! You could at least find some examples that come close to what you want and be more specific about what it is you are trying to do by referencing them. Look

[jQuery] Re: Cycle plugin help

2009-06-10 Thread Mike Alsup
Hi! I found this wonderfull plugin,http://www.malsup.com/jquery/cycle/int2.html I want to built something like pager, in the link. I built it, but now I'd like to change something: i don't want a progressive numeration, but Id' like to define a different text or image customized, and not

[jQuery] Re: Cycle Plugin and Wordpress not playing nice

2009-06-06 Thread Mike Alsup
http://www.ltdmag.com/hometest/ You have an error: $(#indexGallery).cycle is not a function because this URL returns 404: http://www.ltdmag.com/hometest/ltdmag.com/wp-content/themes/ltd_theme/js/jquery.cycle.all.js

[jQuery] Re: cycle plugin image positioning issue

2009-06-04 Thread Mike Alsup
How do I eliminate or override the position: absolute; being injected into the img tag, as that appears to be the culprit? You can't eliminate it. For the slideshow to work the container element must have 'relative' position and the slides must have 'absolute' position inside the container.

[jQuery] Re: cycle plugin image positioning issue

2009-06-04 Thread Laker Netman
On Jun 4, 10:17 am, Mike Alsup mal...@gmail.com wrote: How do I eliminate or override the position: absolute; being injected into the img tag, as that appears to be the culprit? You can't eliminate it.  For the slideshow to work the container element must have 'relative' position and the

[jQuery] Re: cycle plugin issue

2009-06-01 Thread Mike Alsup
$('#slideshow').cycle({             fx: 'scrollHorz',             timeout:  0,             speed:    1000,            prev:    '#prev2',             next:    '#next2',                         easingIn        : 'easeOutCubic',              easingOut       : 'easeInBack' The option names

[jQuery] Re: cycle plugin with keyboard

2009-05-23 Thread runrunforest
I get it to work now, just change the selector window to document, The IE really has no idea what window is LOL. The working code $(document).keydown(function(e){ if(e.which == 37){ $('.prev').click();} else if(e.which == 39){ $('.next').click();} }); On

[jQuery] Re: cycle plugin with keyboard

2009-05-22 Thread ryan.j
take a look here - http://www.quirksmode.org/js/keys.html 37: left 38: up 39: right 40: down irritatingly, i completely forgot the arrow keys are a special case, and won't trigger properly (or even consistently) the keypress event across different browsers. try keydown or keyup to catch the

[jQuery] Re: cycle plugin with keyboard

2009-05-22 Thread ryan.j
possibly keycode vs. charcode. did you try the keypress thingy on quirksmode to see what IE returns on keydown? which version of IE isn't it working? On May 22, 3:10 pm, runrunforest craigco...@gmail.com wrote: thanks I got this to work in all browser except... IE. The code i used        

[jQuery] Re: cycle plugin with keyboard

2009-05-22 Thread runrunforest
thanks I got this to work in all browser except... IE. The code i used $(window).keydown(function(e){ if(e.which == 37){ $('.prev').click();} else if(e.which == 39){ $('.next').click();} }); What makes IE not understand this ? On May 22, 3:15 

[jQuery] Re: cycle plugin with keyboard

2009-05-22 Thread runrunforest
its IE 7 On May 22, 9:13 pm, ryan.j ryan.joyce...@googlemail.com wrote: possibly keycode vs. charcode. did you try the keypress thingy on quirksmode to see what IE returns on keydown? which version of IE isn't it working? On May 22, 3:10 pm, runrunforest craigco...@gmail.com wrote:

[jQuery] Re: cycle plugin with keyboard

2009-05-21 Thread Mike Alsup
The plugin does not provide support for keyboard nav. You'd have to implement it yourself. On May 20, 9:48 pm, runrunforest craigco...@gmail.com wrote: In cycle plugin, ss there way to switch images by keyboard arrows instead of clicking next, prev

[jQuery] Re: cycle plugin with keyboard

2009-05-21 Thread ryan.j
bind keypress to a check for the charcode/keycode and if your condition is met, pass the js to load the next img? $(document).keypress(function (e) { if (e.which == 32 ) { /* advance scroller! */ } }); ( lots of interesting stuff on this sort of thing at --

[jQuery] Re: cycle plugin with keyboard

2009-05-21 Thread ryan.j
$(window).keypress(function (e) { if (e.which == 39 ) { /* keypress right */ } elseif (e.which == 37 ) { /* keypress left */ } else { return false; } }); if you can't figure out how to advance the cycle on your own, maybe try to simulate $('#scrollLeft').click() On May 21,

[jQuery] Re: cycle plugin with keyboard

2009-05-21 Thread runrunforest
could you give some further tip, how can I simulate, where should I put the code to (document.ready part ?). On May 21, 10:28 pm, ryan.j ryan.joyce...@googlemail.com wrote: $(window).keypress(function (e) {   if (e.which == 39 ) {     /* keypress right */   } elseif (e.which == 37 ) {    

[jQuery] Re: cycle plugin with keyboard

2009-05-21 Thread ryan.j
yeah, stick this in document ready. to simulate the click, get the id of element you'd normally click to advance the scroller (inspect it with the mozilla plugin firebug) and append .click() On May 21, 4:45 pm, runrunforest craigco...@gmail.com wrote: could you give some further tip, how can I

[jQuery] Re: cycle plugin with keyboard

2009-05-21 Thread runrunforest
the all the arrow has charcode of 0 (zero). I know this by the code var key = e.which; alert(key); So how the script which is right arrow which is left arrow. On May 21, 10:51 pm, ryan.j ryan.joyce...@googlemail.com wrote: yeah, stick this in document ready. to simulate the click, get the

[jQuery] Re: Cycle plugin and print styles

2009-05-20 Thread Mike Alsup
I'm using the excellent Cycle plugin, but I have a problem in that I would like my print style to act as if the Javascript wasn't there, i.e. each frame appear on the page rather than being set to display: none. Is this possible using Cycle and if so does anyone have any pointers as to

[jQuery] Re: Cycle plugin - frame number / IE behaviour

2009-05-20 Thread clement.val.cee...@gmail.com
It works ! Thanks again :o) On May 19, 9:24 pm, Mike Alsup mal...@gmail.com wrote: Use CSS style rules to position and stack the images. Do you mean forcing the images to be all at the same position ? Yes.  That's what the plugin does once it is run, but you can do it in CSS to avoid

[jQuery] Re: cycle plugin with keyboard

2009-05-20 Thread victor kobs
see this web site www.stunicholls.com in gallery section...

[jQuery] Re: Cycle plugin - frame number / IE behaviour

2009-05-19 Thread Mike Alsup
Does anybody know how to display the frame number (and total number of frames) using the standard plugin, only putting some code in the after: function callback ? http://www.malsup.com/jquery/cycle/count.html Second question : with IE7, if all images are already in cache, they all

[jQuery] Re: Cycle plugin - frame number / IE behaviour

2009-05-19 Thread clement.val.cee...@gmail.com
On 19 mai, 15:48, Mike Alsup mal...@gmail.com wrote: http://www.malsup.com/jquery/cycle/count.html Wow !! That was fast ! Strangely, I never found this demo. Thanks a LOT ! Use CSS style rules to position and stack the images. Do you mean forcing the images to be all at the same position ?

[jQuery] Re: Cycle plugin - frame number / IE behaviour

2009-05-19 Thread Mike Alsup
Use CSS style rules to position and stack the images. Do you mean forcing the images to be all at the same position ? Yes. That's what the plugin does once it is run, but you can do it in CSS to avoid flicker on page load.

[jQuery] Re: cycle plugin not working

2009-05-18 Thread Mike Alsup
head script type=text/javascript src=/jquery/cycle.js/script script type=text/javascript src=/jquery/jquery-1.3.2.min.js/ script This is backwards. You need to include jquery before you include the cycle plugin. On May 18, 1:31 am, surreal5335 surrea...@hotmail.com wrote: I am trying to

[jQuery] Re: cycle plugin not working

2009-05-18 Thread surreal5335
Thanks a lot for pointing that out, I made the change which changed nothing sadly. I even cleared my cache and refreashed everything to get the changes to take effect, but still nothing. I am sure that was one of the problems but there seems to other problems still Could you tell me if it is

[jQuery] Re: cycle plugin pager - get started..

2009-05-07 Thread idcoder
ok i got it working. I was wondering if it is possible to change the nav links caption, or put some other image, not the source image but image of our choicethanks On May 7, 1:46 pm, idrish laxmidhar idrishlaxmid...@gmail.com wrote: hi. i am interested in using the cycle plugin and i dnt

[jQuery] Re: cycle plugin pager - get started..

2009-05-07 Thread Mike Alsup
ok i got it working. I was wondering if it is possible to change the nav links caption, or put some other image, not the source image but image of our choicethanks You can have the links contain whatever you wish using the pagerAnchorBuilder option. Check out the following demos:

[jQuery] Re: Cycle plugin Issue in Safari and Chrome browser

2009-05-05 Thread Stugle
I had the same issue, but the following solution worked for me: To add css rule specifying width and height to the div element in the head section, just after the stylesheet link For eg. link href=css/stylesheet.css rel=stylesheet type=text/css media=screen,projection / style type=text/css #s4{

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-29 Thread davebowker
Bump! Same problem here. Code looks fine? $('#feature .sim-link').toggle(function () { $('#feature').cycle('stop'); }, function() { $('#feature').cycle('start'); }); Anyone have a solution? Dave On Apr 27, 8:04 am, Nic Hubbard

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-29 Thread Mike Alsup
Nic, Are you still having a problem with this? Your pause and resume anchors appear to be working just fine. Mike On Apr 27, 3:04 am, Nic Hubbard nnhubb...@gmail.com wrote: Really?  No one knows why the cycle pause is not working?  Someone must be using this! On Apr 24, 8:25 am, Nic

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-29 Thread Mike Alsup
There is no 'start' command for cycle. The available string commands are stop, pause, and resume. If you want to stop the slideshow, then to restart you need to pass in the options again. Mike On Apr 29, 10:07 am, davebowker d...@davebowker.com wrote: Bump! Same problem here. Code looks

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-29 Thread Nic Hubbard
Hi Mike, Yes, still having issues. It is not the anchors that I am concerned about (the pause/play icon). It is when you click the Contact about this artwork link, it should be pausing the cycle, which it is not doing. This is where my problem lies. On Apr 29, 10:15 am, Mike Alsup

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-27 Thread Nic Hubbard
Really? No one knows why the cycle pause is not working? Someone must be using this! On Apr 24, 8:25 am, Nic Hubbard nnhubb...@gmail.com wrote: Anyone? On Apr 23, 9:44 pm, Nic Hubbard nnhubb...@gmail.com wrote: Shawn, Yes, I havepauseon hover set, and this is correctly working.  It is

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-24 Thread Nic Hubbard
Anyone? On Apr 23, 9:44 pm, Nic Hubbard nnhubb...@gmail.com wrote: Shawn, Yes, I have pause on hover set, and this is correctly working.  It is when the overlay comes up, and it is suppose to pause the current image, which, my code seems to be correct to do so $

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-23 Thread Shawn
Pause is working for me, with a catch. If my mouse is not over the image, it cycles. Placing my mouse over the image pauses the cycling. Clicking the link brings up an overlay (?) and a form - at this point the mouse is not over the image, but over the overlay/form. So the image cycles

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-23 Thread Nic Hubbard
Shawn, Yes, I have pause on hover set, and this is correctly working. It is when the overlay comes up, and it is suppose to pause the current image, which, my code seems to be correct to do so $ ('#artistCycleParent').cycle('pause'); but it just keeps cycling and does not honor the pause. I

[jQuery] Re: Cycle plugin Issue in Safari and Chrome browser

2009-04-20 Thread gcole_5
Having a similar issue with text content. Text does not wrap in Safari (using this as a quote scroller). All other browsers handle it fine. div id=rotate div class=sideQuotes span class=sideTitleDid You Know?/spanbr / pbABC.com/b is a great place to find...Pest Control, Pool Cleaning,

[jQuery] Re: Cycle plugin Issue in Safari and Chrome browser

2009-04-13 Thread t3k...@web.de
I have the same issue with Chrome. I just tried the newest version of Cycle but the problem is still there. Wrapping the cycle div in another one fixes the problem but that seems not really the way to go. The code goes something like: div class=slideshow div class=slideimg src=slide1.jpg alt=

[jQuery] Re: Cycle plugin Issue in Safari and Chrome browser

2009-04-13 Thread Mike Alsup
div class=slideshow div class=slideimg src=slide1.jpg alt= title=brdiv class=textbackgroundnbsp;/divdiv class=slidetext/div/ div div class=slideimg src=slide2.jpg alt= title=brdiv class=textbackgroundnbsp;/divdiv class=slidetext/div/ div /div and the css: .slideshow{        

[jQuery] Re: cycle plugin - background color in IE?

2009-04-12 Thread bhon
Thanks. you save me today.

[jQuery] Re: Cycle plugin pager over image

2009-04-07 Thread Chuck Harmston
Hi Martijn, You would actually want to do this using CSS, not Javascript. The easiest way to accomplish this would be to set the container div (the one you applied the .cycle() method to) to position: relative, then absolutely position the pager element. If you post the HTML markup you're using, I

[jQuery] Re: Cycle plugin pager over image

2009-04-07 Thread martijn397
Thanks alot for your response Chuck! i'm using the following: CSS: #slideshow { position:relative; width: 500px; height: 500px;} #nav a { padding: 5px 10px 5px 10px; background: white; text- decoration: none; color: black } #nav a.activeSlide { background: #fbb040; color: white } #nav a:focus

[jQuery] Re: Cycle plugin pager over image

2009-04-07 Thread martijn397
Thanks alot for your response Chuck! i'm using the following: CSS: #slideshow { position:relative; width: 500px; height: 500px;} #nav a { padding: 5px 10px 5px 10px; background: white; text- decoration: none; color: black } #nav a.activeSlide { background: #fbb040; color: white } #nav a:focus

[jQuery] Re: Cycle plugin pager over image

2009-04-07 Thread Chuck Harmston
It seems to me that this code should have the pager positioned absolutely over the top left of the image. Do you have a live example that I could take a look at? P.S. It probably makes semantic sense to turn the images into an unordered list :) Chuck Harmston cpharms...@gmail.com Cell: (612)

[jQuery] Re: Cycle plugin: pulling in only child elements with a certain class?

2009-04-03 Thread Mike Alsup
I thought it might be possible using the slideExpr option, but I think I'm misunderstanding how that works. When I try this:         $('#slideshowl').cycle({             fx:    'fade',             pause:  1,             speed:    600,             timeout:  3,             slideExpr:

[jQuery] Re: Cycle plugin and paging

2009-04-02 Thread Mean Mike
Well I figured it out [code] $(document).ready(function(){ $('.rotator').each(function(){ $(this).after('div class=rotatorcontrol/div'); $(this).cycle({ fx: 'turnDown',

[jQuery] Re: cycle plugin - background color in IE?

2009-03-31 Thread option8
yeah. it's the cleartype fix. i added cleartype: 0, // disable cleartype corrections to my cycle function, and the background went away. meh. --charles.

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-30 Thread Smoggy
It also seems to only be an issue with the latest release I am using an older version of cycle and it works fine I will try the issues mentioned above also. On Mar 29, 6:07 pm, Christian Cibelli chcibe...@gmail.com wrote: Hey Mike, I have the same problem on my site. I added the cleartypeNoBg

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-30 Thread Smoggy
I just added cleartypeNoBg: true and that removed the background on the newest version if cycle On Mar 30, 11:47 am, Smoggy nate.scave...@gmail.com wrote: It also seems to only be an issue with the latest release I am using an older version ofcycleand it works fine I will try the issues

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-30 Thread Mike Alsup
I just added cleartypeNoBg: true and that removed the background on the newest version if cycle Try false, not true.

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-29 Thread Merindol
Great option ! And the text is no affected. Thanks to you. Mike Alsup a écrit : Thanks for the tip. Removing the cleartype solves the issue but indeed the text is ugly (I'm using Cycle on paragraphs of text). Actually, instead of removing cleartype, I just added the CSS rule background:

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-29 Thread Christian Cibelli
Hey Mike, I have the same problem on my site. I added the cleartypeNoBg but nothing happens, it just was fixed when i use cleartype but, the text goes ugly :( any idea? thanks a lot, On Mar 29, 11:09 am, Merindol rndme...@gmail.com wrote: Great option ! And the text is no affected. Thanks

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-29 Thread Mike Alsup
I have the same problem on my site. I added the cleartypeNoBg but nothing happens, it just was fixed when i use cleartype but, the text goes ugly :( any idea? No ideas other than what I already posted. Maybe you could post a link to your site?

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-27 Thread Merindol
Hi. Thanks for the tip. Removing the cleartype solves the issue but indeed the text is ugly (I'm using Cycle on paragraphs of text). Actually, instead of removing cleartype, I just added the CSS rule background: transparent !important; on paragraphs, because I discovered that on IE7/8 a

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-27 Thread Mike Alsup
Thanks for the tip. Removing the cleartype solves the issue but indeed the text is ugly (I'm using Cycle on paragraphs of text). Actually, instead of removing cleartype, I just added the CSS rule background: transparent !important; on paragraphs, because I discovered that on IE7/8 a

[jQuery] Re: Cycle Plugin : [cycle] terminating; too few slides: 1

2009-03-26 Thread Asinox
Well my foreach is fine, all tags are closed fine, firebug report my request fine but for this case, now im using something that i found using mootools Thanks u On Mar 24, 11:59 pm, pedalpete p...@hearwhere.com wrote: Yeah, but I've seen the same thing in my code, and it turned out I

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-25 Thread Merindol
I have the same problem, but it's not white : it's the same color as the first parent that has its background-color defined. As a workaround I added background: transparent !important; to the cycled blocks. But that doesn't help to find where the problem is. Regards. On 25 mar, 02:26, Smoggy

[jQuery] Re: Cycle plugin adds white background in ie6 and ie7

2009-03-25 Thread Mike Alsup
It might have something to do with cleartype option. Try setting the cleartype to false: $('#slideshow').cycle({ cleartype: false }); On Mar 25, 6:09 pm, Merindol rndme...@gmail.com wrote: I have the same problem, but it's not white : it's the same color as the first parent that has its

  1   2   3   4   >