JQuery :: Cycle Plugin With Images And Text Overlay In IE?

Oct 21, 2011

I am using the cycle plugin to vertically scroll images with text overlays on a WordPress homepage. I position a div with a semi-transparentbackgroundto darken behind the text The div style uses abackground-image with the -moz-linear-gradient and for IE it uses filter with the microsoft gradient. I thought it might be a problem but it actually works half the time. When a new slide appears and scrolls down the text background is completely transparent - through to the page background. The text over the background is also faintly visible. Once the new slide is in position however, the background and textappear as intended. The suprising point -while theslide is being removed the text and background display perfectly.

[Code]...

View 2 Replies


ADVERTISEMENT

JQuery :: Cycle Banner W/ Text Overlay?

Oct 4, 2011

With the cycle plugin the image slideshow is pretty easy, but my problem is how do I show the text while "cycling" the images!so this is the code:

<div id="banner">
<?php print render($page['banner']); ?>
<!--slideshow-->

[code]....

View 4 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 Center All Images?

Oct 12, 2010

I have two separate questions. One being, how would I go about having the container resizing itself for different image sizes. So that surrounding elements can conform to it's size?

Also, is there a way to align the images in a slide shows so that it is always horizontally and vertically centered in the slideshow?

View 10 Replies View Related

JQuery :: Cycle Plugin - How To Change Images Dynamically

Jan 25, 2011

Malsup's cycle plugin - can the image set being cycled through be changed on-the-fly? e.g. a user clicks on a thumbnail A and cycle shows A's images, clicks on thumbnail B and see B's images etc.

View 1 Replies View Related

JQuery :: Cycle Plugin - Pagers With Linking Images

Aug 4, 2010

The only thing I can't figure out is how to create and use image pagers with slideshow images being clickable links as well. For example, view teslamotors.com. I see they use hero slideshow and drupal, is that something more auto generated by a back end ui? I tried reading through their source but its a little much for me. I have successfully setup images as pagers following: [url]

View 1 Replies View Related

JQuery :: Cycle Plugin Showing The Background Between Images?

Apr 6, 2011

I've used the cycle plugin on several Wordpress sites and it works great, except that when I run it the background is visible between transitions. Instead of a smooth fade between images, there is a long pause between images. Even when I use the default values, there is still a noticeable delay between the slides.

$(document).ready(function() {
$('.slideshow').css("overflow", "hidden").cycle({
fx: 'fade', sync: 1, speed: 2000, timeout: 3000, delay: -2000,
});
});

The current site I am using the cycle plugin on is [URL]

View 9 Replies View Related

JQuery :: Wrong Size Of Images When Using Cycle Plugin

Aug 15, 2011

Quite often, some images are displayed with much smaller sizes than what they should be. For example, an image with height 768px may be displayed with a height of about 100px. This problem is usually sovled by refreshing the page. The page may need to be refreshed more than once to get all the images to their correct sizes.

View 8 Replies View Related

JQuery :: Center Images And Display Title With Cycle Plugin?

Dec 2, 2011

I am trying to combine the centering of the images. I get for the image title "undefined" If I remove the <div id="slide">...</div> the titles display normally.

jcycle code:
$(document).ready(function() { $('#slideshow').cycle({ fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc... timeout: 5000, after: onAfter, next: '#slideshow', pause: 1 }); }); function onAfter() {

[Code]....

View 3 Replies View Related

JQuery :: Cycle Plugin Pause On Hover Links AND Images

Feb 23, 2011

I'm testing out the cycle plugin, I wanted to have it so the slideshow would pause on hovering over both the pagination links and the image. With the below code right now only the bottom slideshow pauses on hovering over the links but does not pause on hovering over the images as the top slideshow does. I seem to be running into problems combining the two, can you take a look? I want to keep the previous and next links and for them to be functional also.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

[Code]....

View 1 Replies View Related

JQuery :: Cycle Plugin - Centering Images Of Variable Width?

Oct 17, 2009

I didn't see this as an option, so I decided to give it a try on my own. I was able to add some lines of code (shown with the > in the margin below) to the jquery.cycle.js script to read in the width of each image and center the slide within the slideshow container // set position and zIndex on all the slides

View 2 Replies View Related

JQuery :: Cycle Plugin, All Images In Pool Showing Up When Page Loads?

Jun 1, 2009

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 fills the screen before it hides.

View 5 Replies View Related

JQuery :: Cycle Plugin - Make The Images Transition Fade Smoothly Into The Next Image

Oct 5, 2010

Love the Cycle plugin.

- works as expected in that one photo fades into the next photo smoothly. Test page looks great - [url]

However, when I put the exact same code into Thesis/WordPress, I get a long delay between the images, and spend several seconds looking at a blank stage - [url]

Why would that be? How to make the images transition fade smoothly into the next image

View 2 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 :: Animation - Fade Plugin Onto A Page To Automatically Cycle Through Images In An Unordered List Without A Click Event

Feb 18, 2011

I have just added a jQuery fade plugin onto a page to automatically cycle through images in an unordered list without a click event. It works well but when I preview the page with JS disabled all images become visible and it messes up the layout. What I need is a method that works when JS is disabled. I have seen methods where the {display:none} CSS styles are applied then changed via JS but can't figure this out. If anyone can either recommend a decent plugin with provisions for JS disabled browsers

View 2 Replies View Related

Jquery :: Cycle Plugin With Number And Text Paging

Dec 28, 2009

I have the basic functionality of the jquery cycle plugin working. I have set up a test page at here but was wondering what would I need to change in order for the paging to resemble page.

View 1 Replies View Related

JQuery :: Cycle Plugin Different Pager Text Relating To Content?

Aug 18, 2011

I'm building a jQuery cycle slideshow into a Wordpress post. The slideshow will cycle through images attached to the post, and the final slide will always be a text box (generated by a meta box).

I'm trying to build a Pager that would display numbers (as per default), but for the last slide, the pager button would simply be "Text".

e.g.

1 2 3 4 5 Text

I have explored PagerAnchorBuilder but am still struggling.

View 4 Replies View Related

JQuery :: Cycle Plugin - Get The Value Of "slide.src" When Images Are Wrapped In Divs?

Aug 25, 2010

Using this as an example - [url] - how can I get the value of "slide.src" when my images are wrapped in divs?

Like so:

View 1 Replies View Related

JQuery :: Malsup Cycle Plugin: Pager Disappears In IE7/bold Text Does Odd Things

Feb 22, 2011

I have the cycle plugin running, works fine on all but IE7 (not catering to IE6). The pager elements on the right do not appear in IE7. I have tried adjusting the z-index, etc., but can't figure it out.

Also, the caption text transitions in with bolded elements properly appearing, and then they flip to regular text (the whole line of text transitions a bit strangely).

View 4 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 :: Code For Enlarging Images - Overlay Effect

Oct 16, 2011

I know nothing about javascript, but have found a useful code for enlarging images, and it would be great if I could just insert a line or two to get the overlay effect - so, what I want to add is a background when an image is open: for example - [url].

Here is the code

Code:

View 5 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 :: Slideshow - Cycle - Images Shrink From The Normal Size To Small Tiny Images

Dec 10, 2010

Iīve just launch my website-portfolio, well itīs not yet the final version but it is almost and despite I am satisfied with the final result Iīve detected a really strange bug that only happens sometimes. The thing is when the first introduction Slide appears (the one with the hand-made drawings), sometimes the images shrink from the normal size to small tiny images. This doesnīt happen always and if you refresh the page it disappears.

Follow the link to the page were the bug happens - [url]. I'm using jquery cycle plugin, check it out.

View 1 Replies View Related







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