Refers to jquery's animate() function. For generic graphical animations, see the [tag:animation] tag.
1
vote
1answer
17 views
Checking if image has left its container?
First off, I think I may have some syntax errors, but I don't know where since most of this code is copy paste from JQuery then modified for my needs...
$(document).ready(function() {
var stage = ...
0
votes
2answers
17 views
Setting JQuery Animate parameters with a variable
I am trying to use a variable to set the CSS parameters to be changed in a JQuery Animate function. I understand it needs to be passed an object, but it still doesn't seem to work. All elements ...
1
vote
1answer
28 views
How to animate the border of clicked link with jQuery?
I am new in to jQuery. I have been stuck for hours trying to figure out the animate function. And yet it still isn't working.
What I am trying to do is really simple. There is this link. If I click ...
0
votes
2answers
23 views
toggle() an animate() with jquery
this is a super easy question. I know basically what I want and how to do it, I'm jusy not sure what selector to use in a certain part. The animation works fine if I take away the toggle() function, ...
0
votes
1answer
20 views
Queue multiple jquery animation
Did someone try to manage common animation queue?
I want to get something like producer/consumer in back-end programming, so that any event triggering some animation could add it's piece of needed ...
0
votes
1answer
17 views
Animating with jQuery, smoother animation without pause
I have three DIVS, #clouds-1, #clouds-2, #clouds-3, where each of them have background of different clouds. I'm animating them up and to the right, but cannot get the effect I want.
The problem is ...
0
votes
2answers
38 views
jQuery .animate() for simple horizontal slider not working as intended
I have tried to modify this jQuery slider solution: http://stackoverflow.com/a/9864636/908491 (using the first solution - http://jsfiddle.net/sg3s/rs2QK/).
Here is my jsFiddle: ...
-2
votes
2answers
38 views
jQuery animate before displaying home page
I am newbie to jquery. My client needs a homepage in which first the logo will appear with some animation and pause for couple of seconds, then the title of the company, then the logo and the title ...
0
votes
0answers
24 views
jQuery - Endless Carousel from scratch - Next and Previous Arrow behave strangely
I am trying to create a content slider for a website. The slider canvas area can only show 3 items at a time, while there may be 4 or more items.
Please See JSFiddle: http://jsfiddle.net/qDUVw/
...
0
votes
0answers
7 views
jQuery show div with 3D turning animation to left
I'm trying to make a jQuery animation. On my requirements, I need to show a div and when mouse hovers over this div a sliding animation will start on left to show another div while keeping the current ...
0
votes
1answer
31 views
Cascading function (animate) and $('this')
I have 3 divs with mouseenter, mouseleave and click functions. The problem is in the click event - I'm having a bit of trouble making it's animate cascading function work. I think the problem is on ...
0
votes
4answers
54 views
jQuery: Why does my click event on a li element not work?
I want to move the Div-element "nav", when a li-element was clicked.
I have a List in a div
<div id="nav">
<ul>
<li><a href="#t1">Flyer</a></li>
...
0
votes
1answer
30 views
Sluggish animations with CSS3 and jQuery for iOs
I'm about to create a webapp but when I've tried to animate some objects with jQuery or CSS3, they are sluggish, unfluid, like I have on my computer (or the iOs Simulator).
I think this is it ...
0
votes
0answers
12 views
Animating a div to zoom in/out
I have found a function online to animate a div to zoom animate in, but it doesn't seem to work when an image is placed inside the div, and just snaps open.
Is there something simple I could do to ...
1
vote
3answers
45 views
Animate on scroll with jQuery
Ok, I'm facing an issue when trying to animate several elements of the DOM, using a condition on a scroll event.
First of all, I'm using Drupal 7 so the jQuery library I'm using is of version 1.4.4.
...