Refers to jquery's animate() function. For generic graphical animations, see the [tag:animation] tag.
0
votes
2answers
26 views
Loop though one tweet at a time Jquery
Im getting in a bit of a muddle with some jQuery im trying to put together. I am trying to loop through the first 5 tweets via a JSON dump within my app, with them then I would like to show one at a ...
0
votes
3answers
26 views
animate opacity distortion in IE8
<script type="text/javascript" src="https://waybackassets.bk21.net/upload/js/jquery-1.8.0.min.js"></script>
<script type="text/javascript">
$(function() {
$(window).scroll(function(){
...
0
votes
3answers
37 views
Shrinking div on Click - Jquery 1.9
I want a particular div to shrink, (Complete data should be visible) every time when user clicks on the particular icon. Here I have the class, legend-icon. so I want the anotherID,for example #Chart ...
8
votes
3answers
57 views
How avoid sibling element from shaking when animate with jquery
I have two div elements side by side. When i move the mouse over the first and animates it, the next one strangely shakes. See here: http://jsfiddle.net/YqZSv/1/ I've noticed it only happens when ...
0
votes
2answers
69 views
jQuery code doesn't work on Google Chrome?
This code doesn't work on google chroome but works on Firefox, opera, and IE
function show() {
$('#networks').click(function () {
$('#social').slideDown(1000);
...
0
votes
1answer
32 views
Jquery detect user interaction
I have this code that scrolls the page automatically and stops the animation when the user interacts with the page. THis working properly on desktop devices but not on iphone. When the user try to ...
0
votes
3answers
29 views
How to animate the width with slide effect (jquery)?
How do I animate the width with a slide effect to the right?
Here's my code:
$(".toggle").click(function(){
$(".wrapper").animate({ width: "80%" });
});
Thank you!
0
votes
1answer
22 views
Irritating magnify effect on mouse hover
Here is my JsFiddle
I have three link enclosed with ul li tag.I want my each link to magnify when someone mouse hover it. I know it can be done using absolute positioning and z-index. I tried ...
0
votes
5answers
58 views
jQuery add animation when change CSS height property
I hope you all are having a great day
I'd like to add animation to that piece of code. I tried using animate() . But it didn't work, maybe it's because of the lack of my knowledge in javascript.
...
1
vote
2answers
29 views
jQuery animation on nested divs
I'm trying to create a nav of links that correspond to different divs in the page, and when you click on the link, it hides all the other divs and slideDown the respective div. I am almost there, but ...
0
votes
0answers
25 views
animated progress bar with counter ie8 issue
Hi I have an animated progress bar with percentage counter and it works great in all browsers except ie8. The issue is the bar animation reaches the end before the percentage counter has reached 100% ...
0
votes
1answer
20 views
Hardware accelerated CSS3 animations VS transitions VS jQuery animate for mobile
I am developing an app using PhoneGap and jQuery, and am a little confused about animations.
I decided to go with what I already knew, which was jQuery animate, and this worked great, except I came ...
1
vote
1answer
42 views
.each( ) Function Not Producing Unique Values
I have a bunch of blocks that I'm trying to have move along a square 'track', like a train.
var itemLoop = function(){
$("li").each(function(getLeft, getTop) {
getLeft = ...
3
votes
1answer
40 views
Recommendations for a Basic Horizontal Accordion [closed]
SO,
I've been working on an animated horizontal accordion with three panels, and after trying multiple plugins, I resorted to writing my own jquery accordion using .animate, which can be found here: ...
0
votes
0answers
23 views
Accordion Jitter and Displacement in IE with .animate()
I'm building an animated jquery accordion that uses 3 panels, each at 33.33% of the container's width. When a panel is hovered over, it expands to 66.66% of the container's width and the other two ...