cycle

Prototype/Scriptaculous Cycle (Slideshow) Plugin

I've got a bunch of websites that use a few Prototype/Scriptaculous plugins such as lightbox and modalbox, hence include references to these two libraries on various pages. I now need to implement a slideshow on every page, and to follow suit, I need a Prototype cycle or slideshow plugin. The requirements are fairly simple: images sho...

Is it possible to use the JQuery ScrollTo plugin with the JQuery Cycle plugin?

Is it possible to use the JQuery scrollTo plugin to create a transition when using the JQuery Cycle plugin? (i.e. when using a pager in the JQuery Cycle plugin the transition to the next slide scrolls past all intermediate slides) ...

jquery cycle plugin - need some help with the pager...

I'm trying to implement the pager and I've gone through the samples on that site as well as some of the solutions posted here in response to similar questions and elsewhere on the net, but so far nothing has worked... This is the jquery I'm using (the latest attempt anyway...). I'm sure that the html markup is probably not accommodat...

How do I check if an undirected graph has a cycle using Scheme?

I have to determine if an undirected graph contains a cycle or not. I shoudn't use set! instructions. I tried using DFS, but I don't know how to mark the visited nodes. ...

jquery cycle plugin using RSS feed images?

This could well be a terribly ignorant question, if so please forgive me: I'm using jquery cycle plugin to create an image rotator of recently posted images. Im using drupal 6.x and created an RSS feed of the recent images using the views module. I have no idea how to connect the two. Any suggestions? I have a feeling an RSS feed migh...

numeric cycles in shell

hello, what is the name and syntax of the construction ((..)) in example below? for ((i=1;i<10;i++)) do echo $i; done it has strange variable i where are other constructions for numeric cycling in shells? ...

jQuery Cycle - #next #prev, goto nextGallery after final slide of currentGallery

I am using jQuery cycle in several galleries with #next #prev navigation and a image counter output. Now I am trying to connect all these galleries together. If the user reaches the final slide of gallery A (galleryA.html), the #next anchor should point to gallery B (galleryB.html) / the #prev anchor should point to gallery C (galleryC....

Cycle id from #nav links

i want to know the id names from links inside #nav div, i try to find what id have , but i dont find nothing about this. ...

What sort of Circular Dependencies does Oracle allow?

Hi all, I am creating test cases and I need to cover circular dependencies. So far I have been able to create two tables such that Table A has a FK to B and B has a FK to A. What other circular dependencies exist / are allowed between objects? I tried to create cycles between Views but Oracle successfully rejected that. ...

How to find the length of a linked list that is having cycles in it?

This was one of the interview questions asked. How to find the length of a linked list that is having cycle in it. I know how to calculate whether a linked list has a cycle or not using Hare and Tortoise technique. I even know how to calculate the length by storing the addresses in a hashset. The running time of the Algorithm should be O...

jquery cycle slideshow with text underneath

Hi, I have a simple slideshow of images using the jquery cycle script. I'm trying to place description text to appear UNDER the slides of images - but it doesn't seem to be possible - any ideas? here's the test page: http://jsfiddle.net/cjaM5/ You can see the description text flashing after the 3rd image in the slides. I've tried dis...

jquery cycle not working/playing in IE7

got the jq cycle plugin to work nicely on all the other major browsers, but IE7 just shows the first nested element (an img with a anchor wrapped around it) with no fade/animation. http://alitedesigns.com/ I checked for trailing commas after the custom attributes for cycle, any thoughts on why IE won't play nice? thanks! ...

Does jquery cycle plugin work with livequery?

I use this code and it's working fine on main page, but it doesn't work when you get new content through ajax (f.i. clicking on 'Recomendados' link) $('.videoList').livequery(function(){ $(this).after('<div id="nav">').cycle({ sync: 0, fx: 'scrollLeft', pager: '#nav', pagerAnchorBuilder: function(idx, slide) { var imgurl = $...

Jquery Cycle Lite plugin unable to see images that have been loaded by an AJAX call

Hi, I am having problems using the jquery cycle lite plugin on some images that are added via AJAX. Here is the jquery code: $(function() { resizeWindow(); $(window).bind("resize", resizeWindow); $("#assignment-nav").accordion({ header: "h3", ...

help in the Donalds B. Johnson's algorithm, i cannot understand the pseudo code

Hi , does anyone know the Donald B. Johnson's algorithm which enumerates all the elementary circuits (cycles) in a Directed graph? link text I have the paper he had published in 1975 but I cannot understand the pseudo-code. My goal is to implement this algorithm in Java. Some questions I have is for example what is the matrix Ak i...

Explain how finding cycle start node in cycle linked list work?

I understand that Tortoise and Hare's meeting concludes the existence of loop, but how does moving tortoise to beginning of linked list while keeping the hare at meeting place, followed by moving both one step at a time make them meet at starting point of cycle? ...

help in the Donalds B. Johnson's algorithm, i cannot understand the pseudo code (PART II)

Hi all , i cannot understand a certain part of the paper published by Donald Johnson about finding cycles (Circuits) in a graph. More specific i cannot understand what is the matrix Ak which is mentioned in the following line of the pseudo code : Ak:=adjacency structure of strong component K with least vertex in subgraph of G ind...

multiple jQuery Cycle slideshows get superimposed

I'm using the jQuery cycle plugin to create multiple slideshows on a single page (which, once I get this problem figured out, will be started/stopped by mouse hover -- yeah, I know there are 9 slideshows on the page). Problem is, when I tell more than one slideshow to start cycling, whichever ones I call cycle() on get superimposed. So...

JQuery Cycle Plugin hover when paused issue, activeSlide

Almost all is dialed in except then I click the pause/play button, the current activeSlide div doesn't fade in on rollover like the other slides do. Bit at a loss to figure out why it's not allowing hover even though it works when the cycle is not manually paused (i.e. when just rolling over the pager numbers). Thanks for any guidance! ...

jquery cycle "allowPagerClickBubble: true" not quite working

Hi all, I want my page anchors to work as menu links so I used this code: $(function() { $('#slideshow').cycle({ slideExpr: 'img', fx: 'fade', speed: 2000, timeout: 4000, pager: '#nav', pagerEvent: 'mouseover', pauseOnPagerHover: true, pagerAnchorBuilder: function(idx, slide) { // return sel string for ...