JQuery :: Creating Slideshow Using Cycle Plugin?

Feb 15, 2011

I'm creating a slideshow using the Cycle plugin. I'm using Prev / Next options to trigger the transitions and also "alt" attribute to show some metadata on each slide. My question is: Can I use some other metadata to show captions with links in it? I followed [URL] to create this slideshow, but I can't see how to implement links on captions.

View 1 Replies


ADVERTISEMENT

JQuery :: Cycle Plugin - Fades In And Out In A Slideshow

Jun 8, 2009

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_description to all be separate, yet i want them all to be look like theyre in sync. I would also want the pause on hover to work for the entire parent div #projects so each div stops fading in/out.

View 1 Replies View Related

JQuery :: Cycle Plugin Creating Links?

Aug 28, 2009

I would like to link each image in the cycle to a specific page.I got it to cycle and everything is working fine. I just want it so that the actual image is clickable.

View 2 Replies View Related

JQuery :: Malsup Cycle Plugin - Getting The Captions To Display From A Slideshow

Jun 23, 2010

i'm having a small problem with getting the captions to display from a slideshow... i've got multiple slideshows on the page which i guess could be causing the problem... i'm not getting any errors, but no caption is being displayed... here is a section of my html....

<script>
$(document).ready(function() {
$('#cat_slide1').cycle({
fx: 'scrollHorz',
timeout: 0,
next: '#next1', prev: '#prev1',
[Code]...

View 3 Replies View Related

JQuery :: Creating Gallery With Transition Effects Using Cycle Plugin

May 28, 2011

I am new to jquery in anycase I have a db with information about the location of pictures, and I want to use that information to create a gallery with transition effects using the cycle plugin. Right now I can get the info that I need into the <img src=""/> using the code I have, the problem is it keeps giving empty values along with the actual values. To check what was happening I included a navigation bar for each picture and even though I should have 3 results in my query, I am getting 5 pages i.e. the extra ones are empty. I want to know if this problem is because of my php or something wrong I have done with the jquery.

The code I have is pretty simple.
<style type="text/css">
.slideshow { height: 210px; width: 210px; margin: auto }
.slideshow img { padding: 15px; border: 1px solid #ccc; background-color: #eee; }
#nav a { border: 1px solid #ccc; background: #fc0; text-decoration: none; margin: 0 5px; padding: 3px 5px; }
#nav a.activeSlide { background: #F90 }
#nav a:focus { outline: none; }

</style>
<script type="text/javascript" src="[URL]"></script>
<script type="text/javascript" src="[URL]"></script>
<script type="text/javascript">
$(document).ready(function() {

$('.slideshow')
.before('<div id="nav">')
.cycle({
fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
pause: 1,
timeout:0,
pager: '#nav'
});});
</script></head><body>
<? $q = mysql_query("SELECT picture FROM gallery") or die (mysql_error()); while($row = mysql_fetch_array($q)){?>
<div class="slideshow">
<img src="gallery/<?=$row['picture'] ?>" <? } ?> width='200' height='200' />
</div>

View 2 Replies View Related

JQuery :: Cycle Plugin -- Slideshow With Images Of Different Widths - How Can I Center The Images In Containing Div?

Jul 6, 2010

I have to do a slideshow with images of different widths... am using cycle plugin, which I like very much... I have a little test slideshow here, http:[url]....it's not centering imgs in containing div (I made div width of widest image.. this will work for my situation, in which imgs will be hard-coded..)if you inspect img element in firebug (#slideshow img), it shows that the plugin adds a style of position: absolute; top: 0px; left: 0px .to the img; why does the plugin do this.. how can I center the images in containing div...

View 1 Replies View Related

JQuery :: Cycle Plugin - Cycle Through Php Query_post & Display Caption From The_excerpt - Captions Do Not Effectively Cycle

Jun 23, 2011

I have yet to be able to do this successfully. I am using the Cycle Plugin to cycle through a series of images and corresponding caption. To show the images, I use:

<div id="cycle-container">
<?php query_posts("cat=38&showposts=2"); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<img src="http://www.website.com/uploads/<?php echo get_post_meta($post->ID, 'Image', true); ?>" alt="Icon [Code]...

Problem: The captions do not effectively cycle. What appears is the first caption from php the_excerpt but it does not change to the next php the_excerpt text. Can I solve this problem so I get the text from php the_excerpt to correspond to each image??

View 1 Replies View Related

JQuery :: Cycle Plugin: Pause The Cycle From Link Withing The Cycling Content?

Jul 21, 2009

I am having an issue with pausing the cycle from links within the cycle. 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 testing the $('#feature').cycle('pause'); from a link outside the cycle and that seems to be working, but it seems to be from the links inside the cycle content. here is the code i am using (i have made a custom crossfade transition)

function feature() {
$('#featuretitle').hide();
$('#feature').after(
'<div id="featurenav"></div>'

[Code]....

View 2 Replies View Related

JQuery :: Cycle Plugin [cycle] Terminating; Zero Elements Found By Selector?

Feb 21, 2011

I'm using the Cycle plugin to display images for some of my past projects onhttp:[URL]..projekteMy problem is that in Chrome i get the above error in console.([cycle] terminating; zero elements found by selector) I have tried manually initializing the Cycle plugin for every project div and that did not help so I went back to my initial code:

[Code]...

View 4 Replies View Related

JQuery :: Cycle Plugin - Changing The Options Of The Cycle

Aug 14, 2009

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'

Another alternative i've considered is to make a cycle of cycles.

View 4 Replies View Related

JQuery :: Cycle Plugin To Cycle Through Entire Divs ?

Jun 30, 2011

I've worked though a lot of issues trying to get the jQuery cycle plugin working in a relatively complex situation but have hit yet another wall.

Basically, I'm trying to get the jQuery Cycle plugin to cycle through entire divs, each one of which contains yet another slider platform built in jQuery. The first div always displays exactly as it should but when I click to transition, the elements within the second div appear stacked instead of side by side on the slider as they should. I've tried modifying the CSS in every way I can think of to prevent this, but so far, no dice.

I'm not sure whether its an element of the CSS for the second slider platform (wp e-commerce product slider) or one of the two platforms themselves. One thing I did notice was that one of the inner slider divs "gallery_slider" is automatically being set to 90px wide which is way too thin, but I can't seem to figure out how to override this if that is actually the problem.

You can check out the site that I'm trying to implement this on at [url]. The trigger to change the slider div is under "Men's">"Cloth Belts".

View 6 Replies View Related

JQuery :: Cant Get The Easing Plugin To Work With Cycle Plugin

Jun 1, 2009

I cant get the easing plugin to work with cycle plugin

1. does cycle 2.65 work with easing 1.3

2. does easing work on the scrollHorz

3. if both of these are true then what am i doing wrong

$('#slideshow').cycle({

View 1 Replies View Related

JQuery :: Creating An Extension Plugin To The UI Date Picker Plugin?

Jul 12, 2011

I am creating an extension plugin to the jQuery UI Date Picker plugin mostly to just standardize the options used, as well as to add an icon to open the calendar. I am aware of the plugin's use of an icon trigger, but this will not work, as I am using an icon in my sprite image and not wanting an additional request for a mere icon.

My plugin code:

(
function
(
$
)

[Code]....

This is where it really perplexes me as this code does work to produce the calendar icon. while I could get it to work this way, it is obviously not the better choice as it should be part of the extension plugin and not get repeated in all of my various implementations of the plugin.

View 4 Replies View Related

JQuery :: Cycle Slideshow In IE7 - And IE6 ?

Nov 19, 2010

I'm using a simple fade slideshow of 5 images on my site's home page. This works fine in everything except IE6 and IE7. In these browsers, all of the images are displayed at the same time one right after another. The slideshow does not cycle...it is static images.

Here's my site: [url]

View 2 Replies View Related

JQuery :: Cycle Plugin Pause After Element Fades Out But Before Cycle Fades Next Image In?

Aug 26, 2010

I'm a bit new to jQuery but am loving it so far.. especially the cycle plugin. I have a strange problem that I've not been able to find the solution to anywhere else. Everything works just fine with the exception of one issue thats causing me problem. I'm using cycle to control 3 different fading animations on my page. On 2 of the animations I'd like to pause cycle after the image fades out for a few seconds but before cycle fades the next image in. The catch is that I want the timing to be different for each pause before the next cycle begins.

The goal is for#hpcontent,#hphead,#hpfade3to fade out all at the same time. Then for#hphead to pause for 2 seconds before it fades in the next random image, and#hpfade3to pause for 3 seconds before it fades in the next random image

[Code]...

View 3 Replies View Related

JQuery :: Changing Cycle Slideshow To Not Autoplay

Aug 17, 2011

I am sort of new to jquery but have mucked around in it for drop down menus and simple autoplay slideshows. I am now working on a project I found using the cycle plug-in. How do I make this not autoplay? Would like this to be only user controlled with next/previous text/buttons. I am converting flash based flipbook [URL] into a jquery document using the cycle plugin with fade transition. It seems that making this not autoplay would be simple. Just unsure of how and where to do this. Here is what I have so far: [URL] Other questions that I have is can I put these images into CSS background like the slideshow that we use on our homepage? [URL]

View 1 Replies View Related

JQuery :: Cycle Slideshow / How To Pause On Load

Jul 7, 2010

I want the slideshow to be in pause mode when the page loads. I can add a button to resume but can't figure out how to pause on load.I've tried several things. Here's the last attempt that didn't work.

$(document).ready(function() {
$('.media-slideshow').cycle({
fx: 'fade',

[code]....

View 3 Replies View Related

JQuery :: Cycle - Slideshow Where First Slide Is Only Shown Once?

Nov 28, 2011

I have a sideshow to add to a clients site, my plan is to utilise the cycle plugin (correct me if I'm wrong, a little new to all this). The critical aspect is that we have an image which should only be seen once, this being the very first image in the set, this will carry into the cycle/slideshow, but when it loops/repeats i want to skip past this first image.

[Code]...

View 1 Replies View Related

JQuery :: The Z-order In A Slideshow Made With Cycle?

Apr 18, 2011

I'm having trouble with the z-order in a slideshow made with cycle. Basically, my slides are an unordered list. Each list item is a slide with a background image, some text and a link. The relevant snippets of code are shown below.I have two absolutely positioned elements. One that is a div that goes around the entire <ul> that kind of frames the slide show. A second one is the link inside each <li>.The problem is that the link inside the <li> isn't clickable, even though it displays correctly.I think I have the z-index set correctly for all elements. If I turn off the slide show, it is clickable, suggesting I have it correct. If I remove the outside "frame" <div>, it is also clickable. It is only when they are both present, and the slide show is running, that the link becomes dead.

I have a pager turned on, but that doesn't affect this situation. I left it in, because it represents another absolutely positioned element that does work within the "frame".Both the pager and the frame are positioned above the slide.So, it seems something is happening when the slide show runs that I don't understand and is conflicting with elements it doesn't know about.Here's the code

<script type="text/javascript">
$(document).ready(function() {
$('.slides').before('<div class="pager">').cycle({

[code]....

View 4 Replies View Related

JQuery :: Cycle With Anchors And Slideshow Navigation?

Dec 1, 2010

I'm using the jQuery Cycle plugin to build a slideshow that the main image is wrapped in an anchor and also has the thumbnailnavigation. I basically have the same code from the demo page of jQuery Cycle. Once I wrapped the images in a link the thumbnails broke. I have tried dropping the "slide.src" for $('#slideshow img).attr('src') but that still comes back as undefined.

$('#slideshow').before('<ul id="slideshow-nav">').cycle({
fx: 'fade',
speed: 'slow',

[code]....

View 4 Replies View Related

JQuery :: Slideshow - Previous / Next Navigation In Cycle

Feb 25, 2011

My jQuery cycle slideshow was working beautifully before I tried to implement previous / next nav based on the demo at [URL]. I broke it doing something dumb. I am using images instead of text links, but that should not be an issue.

Here's the script:
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
speed: 300,
timeout: 0,
prev: 'navprev',
next: 'navnext'
after: function() {
$('#caption').html(this.alt); .....

View 10 Replies View Related

JQuery :: Cycle Slideshow: Artifacts In IE6 And Higher?

Dec 22, 2010

Small (1px) white dots appear during the transitions in the JPG images I'm using in the slideshow here:[URL]..

I've tried using:
cleartype:!$
.support.opacity,
and
cleartype: true,

But it's not working. I've tested in IE6, 7 and 8, and it's happening in all three.

View 3 Replies View Related

JQuery :: Cycle: Play Slideshow Manually OR Automatically?

Sep 6, 2010

I would like user to be able to switch photos manually (with "next" and "previous" links ) or automatically, i.e., to have a link on the page that says "play slideshow" or something, then the slides switch automatically, like this guy has here, [URL] ("play" link in the middle switches photos automatically; he doesn't use cycle plugin, but I'd like to do this w/cycle plugin if possible..)

View 4 Replies View Related

JQuery :: Cycle Slideshow Onmouseover Only, With Different Appearance When Paused?

Jul 30, 2011

I'm interested in doing something with the Cycle plugin that's very similar to this:which is basically to have a slideshow that only runs when the mouse is over the div itscontained in. But--I'd like the slideshow to not only just run onmouseover, but also to not bevisible accept onmouseover: this way the div that contains the slideshow could have an altogether separate background image that is displayed when the slideshow isn't playing. If there's some kind of function that's built into the Cycle plugin that would achieve the sameeffect, that'd be even better

View 5 Replies View Related

JQuery :: Cycle: Replace Slide In Running Slideshow?

Aug 30, 2009

Is there a way to replace the first slide in a running slideshow such that it's shown only once?? I've been trying variations on something like this with no success. The element is replaced, but cycle doesn't show it.

function doBefore(){
var i = $(".slide").index(this);
if (i == 1){

[Code]....

View 4 Replies View Related

JQuery :: Cycle: Anchor Links On Slideshow Images + Captions?

Sep 12, 2010

I'm creating a slider with the Cycle plugin and ran into a little bit of a road block.

What I want to do is simply have anchor links on my slideshow images, which I can get working just fine, except that when I add these anchor links, it removes my image caption (which worked prior to adding anchors on my images)

[Code]...

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved