Tagged Questions
The animate tag has no wiki summary.
91
votes
16answers
105k views
jQuery animate backgroundColor
I am trying to animate a change in backgroundColor using jQuery on mouseover.
I have checked some example and I seem to have it right, it works with other properties like fontSize, but with ...
14
votes
6answers
10k views
Animating inline elements with JQuery
I am trying to show and hide an inline element (eg a span) using jquery. If I just use toggle(), it works as expected but if I use toggle("slow") to give it an animation, it turns the span into a ...
11
votes
3answers
8k views
jQuery animate css border-radius property (webkit, mozilla)
Is there a way in jQuery to animate the css3 border-radius property available in webkit and mozilla browsers?
I haven't found a plugin that will do it.
-webkit-border-radius
-moz-border-radius
...
11
votes
6answers
24k views
Fade the background-color of a span tag with JQuery
I'm trying to fade the background-color of a span tag using JQuery to emphasize when a change has occured. I was thinking the code would be someting like the following inside the click handler, but I ...
10
votes
3answers
1k views
Disabling GIF animation in HTML
Is there any way, in HTML, to include an animated GIF in an <img> tag, but automatically tell the GIF to not animate? I realize that the user can stop animation by pressing ESC or clicking ...
9
votes
4answers
2k views
How do you animate the value for a jQuery UI progressbar?
I've setup a jQuery UI progressbar but can't use jQuery animate to animate it's value. Any ideas on how to make this work?
The percentDone variable holds a number from 0 to 100 showing how far along ...
9
votes
3answers
1k views
Jquery hide() and show() runs too slow in google chrome
I have a web application that doesn't run correctly in chrome. Works perfectly in Firefox. I have a page with a large numbered of list items, 316 to be exact. Each list item contains a large amount ...
8
votes
2answers
69 views
How to extend jQuery.css from plugin
I have written a very simple plugin that allows me to use 0xffccaa format for css colours instead of '#ffccaa' (mostly to avoid writing quotes - but also to allow easy modification of colours by ...
7
votes
3answers
219 views
Animate images with steam like a cup of tea
I have made this: jsfiddle.net/BWncv/
I have a cup of tea with steam. I want to animate this steam. But this animation is not going well.
The steam must be animated up and up and up. Like steam from ...
7
votes
4answers
1k views
iOS - Animating text size change in UILabel or UITextView?
In an application showing chunks of text, I'm having the font size increase when the device is turned to a landscape orientation. I don't like how it does the whole animation and then suddenly jumps ...
7
votes
3answers
4k 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:
...
7
votes
4answers
7k views
How can I execute multiple, simultaneous jquery effects?
I am animating some error/validation elements on a page. I want them to bounce and be highlighted, but at the same time if possible. Here's what I'm currently doing:
var els = $(".errorMsg");
...
7
votes
2answers
2k views
jQuery fades painfully slow on IE8
I am using jQuery cycle and also a fade in/out on this site:
http://www.lunatestsite.co.uk
Cycle for the banner, fades on hover for the bottom nav buttons. In anything but IE8, all is peachy, but ...
7
votes
2answers
2k views
Javascript/Jquery: using a variable in the css-property of animate
Why does this work:
<something>.stop().animate(
{ 'top' : 10 }, 10
);
but this doesn't:
var thetop = 'top';
<something>.stop().animate(
{ thetop : 10 }, 10
);
To make it even ...
7
votes
1answer
138 views
Animate PNGs with jQuery?
Is there a simple plugin or some robust code that would allow me to animate PNGs with a simple start and stop method? TSM, Alex.
[Edit: I made a jQuery plugin that animates PNGs. Will post when ...
6
votes
3answers
89 views
jQuery .animate() sets display:none, how to avoid?
I have the following code:
HTML:
<div id="clickme">
Click me :-)
</div>
<div id="info" style="background:red; width:100%; height:100px; margin-bottom:-100px; z-index:20; ...
6
votes
1answer
169 views
Why are my jQuery animations choppy in webkit-based browsers?
I'm working with a very simple animation: sliding a line of images to the left:
$('#button').click(
function() {
$('div#gallery').animate({scrollLeft:'+=800px'}, 1000);
}
);
(It's ...
6
votes
4answers
585 views
JQuery animate border without moving div
I want to animate a div by first making it's border thicker by 5px on mouseenter, then decreasing the border by 5px on mouseleave, the tricky part is that I don't want the div to look like it's moving ...
6
votes
4answers
883 views
Animate Divs One Right After the Other with Jquery
Im trying to animate multiple divs, fading in, one right after the other in sequence when the page loads. I also want to do it in reverse, fading out in sequence, when i click to go to another page. ...
6
votes
2answers
2k views
jquery animation callback - how to pass parameters to callback
I´m building a jquery animation from a multidimensional array, and in the callback of each iteration i would like to use an element of the array. However somehow I always end up with last element of ...
6
votes
2answers
3k views
jQuery Looping Animation pauses each time. How to keep from pausing?
I am trying to cause a block to "pulsate" between 100% opacity and some partially transparent opacity. I want to do this with the functionality that is built into the jQuery core, if possible. I would ...
6
votes
6answers
12k views
jQuery: animate text color for input field?
I've got this really simple piece of code that I thought was the correct way to get jQuery to animate the text color for a given input field.
$('input').animate({color: '#f00'}, 500);
But it won't ...
6
votes
1answer
11k views
jQuery - animate / slide to height: 100%
I have a siple code here:
$('.aktualita_sipky').toggle(function() {
$(this).parent().find('.aktualita_content').animate({
height: "100%",
}, 1500 );
}, function() {
...
5
votes
1answer
95 views
Finding a QWidget's height before inserting
I have a widget to insert that looks like this
+--------------------+
| +-------++-------+ |
| | || | |
| | || | |
| | || Label | |
| | Label || Label | |
| | || ...
5
votes
3answers
258 views
IE fade causing white spots on images
I am really stuck on this one. Website is almost finished. Just trying to iron out the last few bugs with IE - what a surprise!
Here is the preview site: ...
5
votes
4answers
550 views
Delphi: sliding (animated) panel
Is there a sliding (animated) panel component for Delphi?
For instance it can be found in Raize Components (a left panel with a "Hot Spot" or hide/show button).
I need not a resizeable panel but a ...
5
votes
1answer
187 views
JQuery animate - any way to “stall” the complete trigger?
Imagine I have a viewport with a defined width and height. I clone an element out of view on the right side, and fly it across the viewport at a random y position with code like this:
...
...
5
votes
4answers
414 views
Rotate a webpage clockwise or anticlockwise
I want to give user the option to rotate the content of my webpage, including images, text and divs. Is this possible?
PS:
I want to rotate the entire webpage. Not just a container div.
5
votes
9answers
831 views
jQuery animate to transparent
$(".block li").hover(
function(){
$(this).animate({backgroundColor: "#000"});
},
function(){
$(this).animate({backgroundColor: "#fff"});
}
);
Need to change #fff to ...
5
votes
3answers
6k views
jquery add a fade to an .addClass
How do I fade .addClass in and out.
Here is the link -
http://www.bikramyogajoondalup.com.au/about-bikram-yoga/postures-benefits.html
and here is the code -
$(document).ready(function() {
...
5
votes
5answers
3k views
(WPF) Animate ListView item move
I would like to have an animation when an item in ListView changes position, so it would slowly move to the new position. Either in a template or in code.
I've tried descending from a ...
5
votes
1answer
16k views
Jquery animate hide and show
I would like to have two things happen at once when I click on a link. I am slowly going through Jquery documentation, but have yet to learn what I need yet.
Here is a link to my site
When I click ...
5
votes
2answers
8k views
WPF - Animate ListBox.ScrollViewer.HorizontalOffset?
I have a collection of Visuals in a ListBox. I need to find the XPosition of an element inside it and then animate the HorizontalOffset of the ListBox's ScrollViewer. Essentially I want to created an ...
5
votes
8answers
23k views
JQuery: animate() doesn't work as expected in IE
I'm getting crazy with this IE 7...
==> hhttp://neu.emergent-innovation.com/
Why does following function not work in IE 7, but perfectly with Firefox? Is there a bug in the animate-function?
...
4
votes
3answers
41 views
CSS removing white space in a specific situation
Take a look at this.
http://jsfiddle.net/DTxQf/18/
When you click on the body of the lower right box, "TOO" is appended to the ul and animated upwards. This results in white space being added to ...
4
votes
5answers
53 views
Animate container height, add … to last word in paragraph
I have a div.infotext with one paragraph inside. I animate the height of that div to a 120px. So there is more text below, which is not shown, as the height cuts it off.
The whole text appears when i ...
4
votes
3answers
71 views
jQuery hover mouseover/mouseout timing
I have the following live example at freakyleaf.co.uk/hoverfade/ whereby upon hovering over a tile, the tile background image fades form 1 to 0.25 opacity over 600ms (.tile_img), then text fades from ...
4
votes
4answers
58 views
How to use the same class jQuery
You have to see the effect to know what I mean.
http://jsfiddle.net/VS8tQ/28
I couldn't use the same class in jQuery because I could not reach the desired effect, so I made the animation with 2 ...
4
votes
1answer
78 views
Refactor jquery animate
I am using the datepicker plugin from here - The example is on the bottom of the page.
It is utilizing jquery animate() like this:
$('#widgetField>a').bind('click', function(){
...
4
votes
1answer
50 views
Setting jquery.animate CSS properties to values stored in the DOM element using $(this).data
#me {
background-color: blue;
color: white;
width:150px;
padding: 5px;
position: relative;
}
<div id='me'>Here we go</div>
OK, I'm trying to set CSS properties of ...
4
votes
2answers
303 views
How can I access, then animate an existing leaflet map polyline using Javascript?
Can anyone suggest how I can access then animate the red polyline here using javascript:
http://gymloop.lukem.co.uk (login: User2/pass2, then select 'Challenges')
I want to animate the polyline from ...
4
votes
3answers
150 views
jQuery queue, how does it work EXACTLY?
I'm having a hard time figuring out how queue's work in jQuery, especially the fx queue. What I want to do is:
Animate multiple different elements one after another
Take a look at this fiddle ...
4
votes
4answers
77 views
Is there a way to hide the artifacts that show up in webkit browsers when using jQuery animate?
I am using jQuery animate to slide in items on a web page. For some reason, only in webkit browsers, there is a trail of artifacts across the space the element was animated over. Is there a way to ...
4
votes
5answers
596 views
jQuery Panels - Toggle one DIV closed before Toggling open another one!
I have the following code.
I am wondering if there is a way to detect if a panel is toggled on and if so, automatically toggle it off before toggling another one on? This detect should happen ...
4
votes
3answers
340 views
jQuery animations speed(smoothness) in firefox 4
Hey, I've made this site(please be patient, there's no preload yet, so it might take a while to load) where you browse images(that are fullscreen) by clicking right/left, it's all done with hidden ...
4
votes
1answer
2k views
How to reload and animate just one UITableView cell/row?
how can I reload and animate just one cell/row ?
Right now i download some files. Everytime a file finished downloading, i call it's finished delegate and call [tableview reload].
But then the whole ...
4
votes
3answers
389 views
Losing hover when animating with jQuery (without moving mouse)
I have this row of thumbnails that I am animating with jQuery.
Each of these thumbnails has a hover and active class.
They work fine but when I animate the list, the new thumbnail under the ...
4
votes
1answer
127 views
Animate stuff like in jQuery?
I was wondering if there is a function like animate in jQuery, but for C# 4.0 ?
When people clicks a button, some panel and other controls must disappear, then I thought of using some simple ...
4
votes
3answers
511 views
jQuery - .css(“right”, posVar); does not work
The Main objective here is to make an instand "jump" to the right. Like I said - I dont want to use .animate, because it makes a little "flashing" effect - because it is not instant. I think .css will ...
4
votes
3answers
1k views
jQuery using .animate() fails to do ANYTHING in IE8
So, it's official: I hate Internet Explorer. Yes, all bloody versions of it. :-D
So, I didn't think I was doing anything complicated here, but apparently I am. I have a bunch of list items in an ...