Re: [jQuery] Animation for cloned elements

2010-01-18 Thread John Arrowwood
Is the item you are cloning already visible? If so, there is nothing for 'slideDown' to do. After you clone, but before you append, make it so that it is not visible (by whatever means is most appropriate), and see if that solves the problem. On Mon, Jan 18, 2010 at 3:28 PM, Andy789 wrote: > H

[jQuery] Animation for cloned elements

2010-01-18 Thread Andy789
Hi All, I am trying to clone an element and add it with some animation efects. something like $item.clone(true).appendTo($list).slideDown("slow"); It adds an element correctly, but I cannot get any effects working (tried fadeIn etc). What am i doing wrong? Thanks

[jQuery] Animated gif freezes in IE8 when applying a jQuery animation on it

2009-11-25 Thread TruckTurner
-when-applying-a-jQuery-animation-on-it-tp26513547s27240p26513547.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] animated gif freezes in IE8 when applying a jQuery animation on it

2009-11-25 Thread goo...@karnbrock.biz
Hi, here's an example page: http://debug.locport.de/jqueryproblem/ The bird is an animated gif - the wings should be flapping all the time. I'm using jQuery to move the container of this animated gif across the page and back. The problem only exists in IE8: The animated gif freezes while jQuery

Re: [jQuery] Animation queue on different element?

2009-11-11 Thread Michel Belleville
Use the animations complete callbacks. $('#element1').fadeIn('slow', function() { $('#element2').fadeIn('slow', function() { ... }); }); Michel Belleville 2009/11/11 badtant > Hi! > > I have the two animations below running side by side: > $("#dubbelsnurra #graph1").animate({height:"154px"},1

[jQuery] Animation queue on different element?

2009-11-11 Thread badtant
Hi! I have the two animations below running side by side: $("#dubbelsnurra #graph1").animate({height:"154px"},1500); $("#dubbelsnurra #graph2").animate({height:"74px"},1500); When they are "done" I want to start another animation on two other elements. See below: $("#dubbelsnurra #graph1_result,#

[jQuery] jQuery animation performance issue

2009-11-08 Thread ziggymello
Hi, I have created a site which uses jQuery animation: http://www.adamswa.com/staging/align/ The problem is that it works fine locally but performs poorly on a server. The background grey circles and the main images should move across the page nicely to their final position. The background grey

Re: [jQuery] Animation callback with parameters generated by a for loop

2009-10-29 Thread sround
Janko, Check out the EFFECTCHAIN plugin...it can help you with your issue. S. -- View this message in context: http://www.nabble.com/Animation-callback-with-parameters-generated-by-a-for-loop-tp25696617s27240p26117558.html Sent from the jQuery General Discussion mailing list archive at Nab

[jQuery] animation, how do I do this ( library plugin ) ?

2009-09-17 Thread Armand Datema
Hi I would like to do the following I have a big header image and on there specific places i want to have a few easing bouncing images that bounce a few times and then they stay n place and optionally it would be nice if I could repeat this after a specified amount of time so om my header image

[jQuery] Animation problem with transparent bachground in IE7

2009-09-08 Thread Rupak
Hi all I am using jquery animation on a div. Which contain transparent background image. Changing the opacity property from 0 to 1 using animation, transparent portion of the background image become black in IE7. It works in FF. code-: $("#alldivpopup").css({'opacity' : &#

[jQuery] Animation "Vapour Trails"

2009-08-20 Thread Leonard Martin
I've been trying to write an extension to the animate function to allow the animation of elements along a parameterised path (in the original motivation this was around the diameter of a circle) whilst keeping use of things like $.easing and $().stop(). I've managed to put something together that

[jQuery] Re: jQuery Animation problem

2009-07-21 Thread Liam Byrne
I had to go searching for the script in the js file $("#toonalleseizoenen").toggle(function(){ $("#alleseizoenen").animate({ height: 'hide', opacity: 'hide' }, 'slow'); },function(){ $("#alleseizoenen").animate({ height: 'show', opacity: 'show' }, 'fast'); }); You're

[jQuery] jQuery Animation problem

2009-07-20 Thread SamV
Hi all, when clicking an item on my website, it has to expand so you see some more options (links). Now, when I want it to appear, I have to click it twice, after I clicked it twice, it works perfectly with one click.. Anyone who can help me out here? You can find the code on: http://www.spurter

[jQuery] jQuery Animation problem

2009-07-20 Thread SamV
Hi, I' ve got this problem with jQuery: I have to click 2 times before the animation starts the first time, from then on it works perfectly. Is there anyone who can solve this problem? You can see it here: http://www.spurtersite.aclebbeke.be/spurters.php > Under "Tijden" there' s a link "meer"

[jQuery] animation is getting slower.

2009-07-17 Thread weidc
hi, i was just playing around today with some animations. this is my code (js): $("#boden").mousemove(function(e) { var pageCoords = "( " + e.pageX + ", " + e.pageY + " )"; var clientCoords = "( " + e.clientX + ", " + e.clientY + " )"; $("span:first").text("( e.pa

[jQuery] Re: jQuery Animation & Loading

2009-07-02 Thread Valor
Does anyone know how to fix the problem with the portfolio section?

[jQuery] Re: jQuery Animation & Loading

2009-07-01 Thread Valor
I did consider leaving out the ajax loading. In my opinion, its just a bit of eye candy and I still have the URL's a person can access directly. So if i'm not wrong, you are suggesting that I create a single page will all the content and load the content using jquery. So a single div container wi

[jQuery] Re: jQuery Animation & Loading

2009-07-01 Thread Charlie
seems you are at mercy of load times and with a rapid animation there isn't much room for time lag. Have you considered skipping the ajax loading? Shouldn't be a lot of work to create 4 divs within your sliding panel, with ID's match your nav href rather than code all this out giving sequenc

[jQuery] jQuery Animation & Loading

2009-07-01 Thread Valor
I think my problem would be better clarified if you guys were able to view the live site. The link is http://nxiel.com/ and the password is "guest1234" (without quotations). Now if you browse through the pages you will see how the animation slides to the left and back to right with updated conten

[jQuery] Animation Issue

2009-04-14 Thread Connor
Hi, I've had this issue when animating before, but have always found a hack around it. But for this project I can't think of any work around. What happens is some elements inside the animated element and near the animated element disappear during animation. To view it in action go to http://www.c

[jQuery] jquery animation

2009-03-17 Thread Trend-King
hi there i have a problem with the jquery animation i have a markup like this text text so i want to $('#tha_img').hide("slow") on mouseenter of the img and the text with is on the bottom appears, ok but now i want the jquery to abourt the animation if the hide of the th

[jQuery] Animation effect fails to run on 'load'ed content

2009-02-11 Thread rymi...@gmail.com
Hi, I've seen this problem before, and I think I've seen the solution to it too, but I can't for the life of me find it again now. I have an empty, hidden div with a unique id. I'm loading some remote content into that using $('#ttAjax').load('whatever.something'); After this I want to show it

[jQuery] animation question

2009-01-18 Thread Raúl Negueruela
I need an animation like show and hide but that only animates in width. I've tried animate but didn't work, to extend jQuery with an script, but it seems like that script didn't execute. The only way i've found is to extend but having the objects extended inside the jQuery.fn.extend(); I've seen

[jQuery] Animation speed dilemma...

2008-12-15 Thread Dan G. Switzer, II
I'm working on an ESPN style ticker and one of the problems I'm running in to is that I need to base animation on a specific speed, not a duration. Right now the animations all are based on duration (aka complete this animation in 2 seconds.) However, I need my animations to all run at the same v

[jQuery] animation conflicts - cycle/other in IE

2008-11-17 Thread pedalpete
I recently added David Malsup's Cycle plugin to my site, and I love the functionality it provides. However, i noticed that some animations/events where responding REALLY slowly in IE. I started pulling things out of the page to see what was causing the slowdown, and from what I can tell, it's the

[jQuery] Animation Question

2008-11-13 Thread [EMAIL PROTECTED]
Right now, I have it so that the menu animates as follows: animation : {opacity:'show',height:'show'}, How would I go about coding the js so it animates out in the opposite effect animation {opacity:'hide',height:'hide'}? Example of what I have so far can be seen here: http://zidea.zidea

[jQuery] Re: Advanced jQuery Animation Problem

2008-10-31 Thread OscarGodson
t; or: > $('.site_thumbs').children('img').removeClass('clicked'); > or: > $('.clicked').removeClass('clicked'); > > don't know. something like that. > > -weidc > > On 31 Okt., 07:13, Omid S <[EMAIL PROTECTED]>

[jQuery] Re: Advanced jQuery Animation Problem

2008-10-31 Thread OscarGodson
wrote: > > > wow, I cant say much about your code, but your page looks awesome. > > > > On Oct 30, 8:13 pm, OscarGodson <[EMAIL PROTECTED]> wrote: >> This is a fairly advanced jQuery animation I am doing on a site I am >> doing, >> but I know it'

[jQuery] Re: Advanced jQuery Animation Problem

2008-10-31 Thread weidc
or: $('.clicked').removeClass('clicked'); don't know. something like that. -weidc On 31 Okt., 07:13, Omid S <[EMAIL PROTECTED]> wrote: > wow, I cant say much about your code, but your page looks awesome. > > On Oct 30, 8:13 pm, OscarGodson <[EMAIL PR

[jQuery] Re: Advanced jQuery Animation Problem

2008-10-31 Thread Omid S
wow, I cant say much about your code, but your page looks awesome. On Oct 30, 8:13 pm, OscarGodson <[EMAIL PROTECTED]> wrote: > This is a fairly advanced jQuery animation I am doing on a site I am doing, > but I know it's failing at alert('2'); as you will see i

[jQuery] Advanced jQuery Animation Problem

2008-10-30 Thread OscarGodson
This is a fairly advanced jQuery animation I am doing on a site I am doing, but I know it's failing at alert('2'); as you will see it in the comments. I have tried TONS of things and nothing is working, but it's only not working after a user pushes the back button. The

[jQuery] Animation sequences

2008-10-01 Thread MadBrain
Hello, jQuery and all new to me and let me know if anyone among you have a technique that could help me with my problem. I try to make 3 animation sequences one after the other. The problem is that I am unable to complete the animation sequences. They all begin at the same time. Does anyone ever

[jQuery] Animation delayed after many clicks

2008-09-30 Thread ryanfitzer
I am building a gallery with transitions and am finding some bugs that I'm not able to figure out. Any help would be appreciated. The URL: http://ryanfitzer.com/dev/wp-sandbox/portfolio/gallery-four The Issue: When one clicks on a thumbnail it switches out the large image and fades it in. If

[jQuery] Animation

2008-09-09 Thread Ronn Ross
Hello all, I have two images on a page, one on top of the other. I'm using them to do a rollover effect. One the top image I have a onmouseover event triggering a jquery fadeOut(). On the bottom image I'm adding the onmouseout event triggering the fadeIn() effect for the above image. The problem is

[jQuery] Animation click event in IE7

2008-06-22 Thread feris.thia
Hi All, I have a working script that animate as wanted in Firefox but not in IE. I created 4 dialogs on the fly in the script using jQuery core and UI, named "I'm the Demo 0" to "I'm the Demo 3!". In Firefox, all dialogs behave well, but in IE7 only "I'm the Demo 0" appears to be correct. The s

[jQuery] animation hover(over,out) + click to make static

2008-04-17 Thread Dilu
i think this is fairly simple for an experienced programmer to solve, but i can't, as i'm a newbie to javascript. here's the link to what i'm working on: http://squidmilk.com/jquerytests/starterkit.html what I'm now trying to accomplish is a "click" function for this navigation bar. i just want

[jQuery] animation question

2008-02-13 Thread spaceage
I'm trying to create an effect using a within a . I want to have each slide up individually from (outside) the bottom of the to the highest available position in the without overlapping other elements. Its kind of a "scroll/accordian" effect. At the conclusion of the animation, the would

[jQuery] Animation improvements

2008-01-18 Thread KidsKilla
Hello everyone! How can i stop an animation of 1 css rule without touching everything other? For example: $('div').animate({width:'+=300'}, 'slow'); $('div').animate({opacity:'hide'}, 'slow'); $('button').click(function(){ $('div').stop('width').animate({width:'-=300'}, 'slow'); }); And mayb

[jQuery] animation queue ?

2008-01-17 Thread Alexandre Plennevaux
hi friends, i'm storing the steps of a series of animations in an array, that have to occur one after the others, according to their index order in the array. Example: animArray['section', 'item','object1','object2' ]; i would like to run a function that loops through the array, and for each

[jQuery] animation :

2008-01-15 Thread [EMAIL PROTECTED]
animation : childrens like animation : http://padmagirl.blogspot.com

[jQuery] animation :

2008-01-15 Thread [EMAIL PROTECTED]
animation : childrens like animation : http://padmagirl.blogspot.com

[jQuery] animation: sequential showing / hiding : how-to?

2007-12-16 Thread Alexandre Plennevaux
hi! i'm displaying a series of graphical items in one command: $('div.items").show("slow"); now, it was suggested by my mate that they appear one after the other, according to, say, their order of appearance in the html markup. of course i could use the callback of each show so taht the next on

[jQuery] css overflow issue with jQuery animation effects

2007-12-15 Thread wick
I ran into a CSS issue with jQuery effects - some of the animations add the overflow property for the duration of the effect. In FF2 - but not IE7 - the overflow property changes the box model behavior. As far as I can tell, the box model change caused by the overflow property is part of the CSS2

[jQuery] Animation glitch in Innerfade

2007-12-13 Thread withoutwax
Hi All, I have created a fading rotating section on my new travel site which is designed to cycle through a number of special offers. When the page loads it created 3 ul which innerfade works on perfectly. Visitors to the site are able to view more info on hotels which removes the special offer

[jQuery] Animation Problems

2007-11-28 Thread datiecher
Hey there, folks! I'm a new JQuery and JS user in general. Due to that, my problem should be simple to solve but I do not have the knowledge to solve it myself... The thing is, I'm using JQ's animate function to animate some elements on my app. The funtion by itself works great but I have one pro

[jQuery] Animation "pop"

2007-10-10 Thread Jangla
I've got a 3 level vertical menu working...ish. For some reason, when the animation happens, the menu fades in to the width of the link in the menu, and then "pops" out to the full required width. Anyone have any similar experiences or can help?

[jQuery] Animation bug in 1.2

2007-09-11 Thread Benjamin Sterling
Url in question: http://benjaminsterling.com/experiments/jqGalViewV2/ At about line 87 and then again at line 91 I have the following: $holder.animate({marginTop:-($mainImgContainer.height()*index)},'1000', opts.tnease); Depending on the link at bottom clicked, the marginTop gets set to what eve

[jQuery] Animation error and next level help

2007-07-30 Thread Benjamin Sterling
Guys, I am working on a plugin and having two issues: url in quesiton; http://www.benjaminsterling.com/experiments/neurosesgalore/ js file in question: http://www.benjaminsterling.com/experiments/neurosesgalore/common/js/i.js Question 1: As it stands now, I have below in a click event:

[jQuery] ..animation question..

2007-05-13 Thread spinnach
is there a way to perform multiple animations with one interval (to animate multiple elements at once), so the animation would be as smooth as possible? i saw that mootols has a function that does this (Fx.Elements), so it would be really cool to have something like this in jquery.. i need th