12
votes
5answers
201 views

Changing CSS properties 'on-the-fly'

I've got this vertical slideshow navigable by up/down arrows. there's 7 items (divs) inside the slideshow's container div but only 3 of them are visible at a time. In truth, this slideshow is a menu - ...
0
votes
1answer
129 views

.animate() function in jQuery doesn't work sliding images

Code: $("#previous_image").click(function(){ $("#images").animate({"right": "+=250px"}, "slow"); return false; }); When i run a console.log i get into the click function, so that ain't a ...
4
votes
6answers
505 views

jQuery Slideshow Image Transition

I'm having an issue with my jQuery slideshow and I can't seem to figure it out. During the transition of images the slideshow will flash white instead of nicely fading into the next picture. I believe ...
0
votes
3answers
723 views

jQuery - hide div on load, show after animation is comlete

I've only started coding a month or two ago and I've run into a problem that I can't seem to find a solution to. I have a slideshow that opens up when a button is clicked, the problem that I have is ...
0
votes
1answer
131 views

Creating a Jquery slideshow animations

Im trying to create my own slideshow, i know there are alot of plugins avaible but there was nothing i could find that matched my needs. The slideshow itself works, the problem i encounter is the ...
1
vote
0answers
105 views

Animating and rotating pages using JQuery,

I'm creating a sliding/animating pages template for a website. By default, I'm displaying 3 pages on the user screen. On the left, we are able to see 10% of the previous page. In the center of the ...
3
votes
1answer
96 views

Simple jquery Slideshow- Positioning wrong when navigate fwd more that a single slide

Here is my javascript code: $(document).ready(function() { //variables var noOfSlides = 8; var slideWidth = 702; // Skip to a slide in sequence function goToSlide (number) { ...
1
vote
2answers
651 views

jQuery slideshow with different animations on elements [closed]

I want to build a jQuery slideshow in which HTML elements within each "slide" animate differently. This would mean 3 divs that slide out to the left staggered, so 2 would have delays, to be replace ...
0
votes
0answers
155 views

jQuery: Slideshow with Animate Opacity and Z-Index

I have 3 images that I want them to slide something like this: (with opacity and of course z-index) The problem is that I can't handle z-index with animation. With the help of a site I've done this: ...
0
votes
1answer
375 views

fading images in a slideshow when hovering external images

I have created (with help from other scripts found online) a slideshow script that turns other images to greyscale when hovered and pauses the slideshow at the same time. The problem is, when I hover ...
0
votes
2answers
296 views

Doing a roll-in/roll-out slideshow in jQuery

I am trying to create a roll-in / roll-out slideshow in jQuery/JavaScript. My problem is, that it needs to be repeated. And right now when it's starting over, the pictures doesnt come from the right ...
0
votes
1answer
140 views

Trying to get my slideshow plugin to infinitely loop (by going back to the first state)

I wrote a slideshow plugin, but for some reason maybe because I've been working on it all day, I can't figure out exactly how to get it to go back to state one, once it's reached the very last state ...
0
votes
2answers
632 views

Sliding 3 divs at a time in a horizontal slideshow

I am building a slideshow which shows 3 horizontal divs and 3 links at the bottom. The links need to slide 3 divs at a time and replace it with the next 3 divs (exactly 3 each click) here is what I ...
0
votes
1answer
228 views

jquery slide not fluid using animate

I need to do a simple jquery slide. I put some images in a div and i use the animate function to change margin value on it. It works good but the problem is that the slide is not fluid on change ...
2
votes
2answers
1k views

Simple cycled slideshow with next/prev link

I am more or less a beginner to Jquery and to start with it I tried to make a clickable, cycled slideshow, based on this one. So far so good. The code works (see below). My questions: Isn't there an ...
0
votes
1answer
176 views

jQuery cycle-What's stopping the slide and why isn't animate() working?

I have a 5 photos slideshow running, and I want to do an animate() function when it slides to the 4th photo. Instead of running the animate();, the slideshow stops when it slides to the 4th one. ...
1
vote
1answer
505 views

jQuery Content Slider with Unique Animated Panels

I'm looking for a jQuery content slider that will allow me to animate the content on each slide, and do unique animations between slides that I can control (not random). Basically, each slide will ...
1
vote
1answer
864 views

Simple jQuery Animate Example - Scrolling from one div to another div

Here is the example I'm looking to create... Let's assume there are two divs, each containing some other HTML/Content (other divs). I would like to have one of these divs in the view on page load, ...
0
votes
2answers
164 views

small jquery script. Easy to do. Animate

I have this script. $("#menu li a.nieuwsbriefaanmelden").click(function() { $("#nieuwsbrief").slideDown(600); $("#nieuwsbrief ...
0
votes
4answers
473 views

How can I stop jquery animation in my slideshow

I am using a jquery photo slideshow feature I found online. It contains a div which uses the accordian effect to display the name of the photo currently being shown. The client however does not want ...
1
vote
3answers
528 views

How do I make my jQuery slideshow with controls unbreakable?

I'm building a simple slideshow using jQuery. I have the basics down, but as a relative jQuery newcomer, I feel like I'm fighting with the animation queue and not making much progress. I've created ...
0
votes
1answer
1k views

Fading jQuery slideshow flicker / queue problem on mouseover (slideSwitch.js)

I've adapted code from the slideSwitch.js tutorial by Jon Raasch, which is basically a fading slideshow. The script promotes the 'active' slide to a higher z-index and animates the opacity for a ...
8
votes
3answers
10k views

jQuery animations are choppy and stutter in Firefox

I like to think I'm not a dummy, but I can't get my jQuery horizontal slideshow to animate smoothly especially in FireFox (on a Mac). Anyone have advice? Animation is being done like so: ...
1
vote
2answers
2k views

jQuery - How to animate click function without clicking (Slide-show like) - Is this possible?

I have created a jQuery script (with help) that works great however I need it to automate/animate itself without using the click function, I just want to know is this possible and if so, how? Similar ...