Refers to jquery's animate() function. For generic graphical animations, see the [tag:animation] tag.
0
votes
3answers
66 views
Animate a Div Background - CSS or jQuery
I have a highly optimized page for imaging and some very graphic effects.
I have something I've been trying to do for awhile, and can't find a clear cut answer.
I want to animate a css background ...
0
votes
2answers
37 views
JQuery animation queue executing in reverse order?
I've got a recursing function that's stepping the animation of an element on the page:
_this = this;
this.x = 0, this.y = 0;
this.targX = 5, this.targY = 5;
this.go = function(){
var xDir = 0, ...
0
votes
2answers
23 views
View doesn't appear as expected
Theoretically the following code should animate the table view cell of the screen to the right and bring in a dark "view" in it's place.
CGPoint location = [gesture locationInView:tableView];
...
0
votes
0answers
18 views
JQuery Animate Script not Rendering Correctly
I wasn't exactly sure how to title this question. I have a JQuery function which controls the animation of some headlines:
function theNewsTickerAnimation(theContent, theCutoff, theTime, ...
0
votes
1answer
37 views
how to loop image up and down using JS?
I'm a beginner in JS and need some help! I have a div with 270px height, and a 365px height image inside it. What I need is the image to loop up and down, so people can see it all...
This is my html:
...
0
votes
0answers
8 views
jsplumb animate connector lines
I have created a very simple set up with jsplumb that displays a top element and then connects that element to six others on the screen.
I am wondering if it is possible to animate the connector ...
0
votes
1answer
40 views
Remove animation after finishing
I use the jQuery below to create a scrolling effect. It also animates a border. But after the animation has finished I would like it to go back to default again, so that it has no border any more.
...
1
vote
0answers
17 views
jquery - offset top not working in internet explorer?
I have some jquery to animate the travelling between internal links (all fine) but I have a 50px height fixed navigation at the top, so to compensate this I have $slidescroll.offset().top -50 which ...
0
votes
1answer
27 views
ie8 animate jquery issue
It really makes me crazy.
I made a navigation fadeout menu by scrolling and hover.
But It show transparent background png files and texts are distorted in IE8 and lower versions.
I can't find good ...
2
votes
4answers
54 views
Open and close fixed div
I have a fixed div on the right of my page like this:
This is my html:
<a id="toggle" class="open"><img src="_styles/images/open_close.png" alt="openclose" /></a>
<div ...
0
votes
1answer
22 views
Animate string (character by character) doesn't appear on UITextView during animate
I'm trying to animate an NSString and make it appear character by character.
While I see in NSLog the function did work, but the text doesn't appear on the UITExtView during animation, only when ...
0
votes
1answer
24 views
Uncaught TypeError: Cannot use 'in' operator to search for 'scrollLeft' in undefined
According to the jQuery API Documentation and some examples found here, scrollLeft is a valid argument for animate(). However, I keep getting this error Uncaught TypeError: Cannot use 'in' operator to ...
0
votes
1answer
33 views
Move element without animation? [closed]
Is it possible to move an element on the screen using jQuery but without animating it? I'm thinking along the lines of stop motion. To create that cut-to-position effect? Is this a thing?
0
votes
1answer
19 views
trying to make div bounce on pageload
I am simply trying to make a div bounce when the page is loaded using this JQuery:
$(document).ready(function(){
$(".test").effect( "bounce",
{times:4}, 500 );
});
But it isn't ...
-3
votes
1answer
52 views
Animate Values while scrolling
i'm working on a simple one-page website. You can navigate by clicking on links inside a fixed navigation. This fixed navigation should work like seen here: http://www.teehanlax.com/story/medium/
...