For questions related to animating elements using jQuery effects.
Questions tagged [jquery-effects]
288 questions
0
votes
5 answers
JQuery dynamically change number
Internet shop. Cart. Products in the cart:
name | price | count | pricecount
Car | 10usd | 2 | 20usd
count is , if I change it I want to take the inputed number, then multiply by price and change…

mozg
- 269
- 2
- 4
- 12
0
votes
1 answer
jQuery UI 'easeoutbounce' needs to be more bouncy
I've created a div which drops to the bottom of the screen on click. It needs to bounce, so I've used 'easeOutBounce' as the ease effect. It works nicely but the client has requested that it's "more bouncy". I know I can slow the animation down…

Dan
- 5,836
- 22
- 86
- 140
0
votes
0 answers
Has jQuery an 'animating'-event?
Has jQuery an animating-event (not :animated)? Something like step, but as extra method/event?
Currently I trigger a custom event in each animations step-function:
$('.foo').animate({property: 'value'}, {
step: function(now, fx){
…

yckart
- 32,460
- 9
- 122
- 129
0
votes
1 answer
How to show a percentage of an image using the jquery Show() method
i'm trying to create the same nice effect of and overlayed arrow (ie desktop version of chrome) when you swipe left or right in for a mobile browser.
I use javascript and jQuery and for now i can show the arrow when I swipe. I managed to have the…

user910865
- 1
- 1
0
votes
1 answer
Change Jquery standart effects with Flux-Slider effects
This my code:
$("#headerimg" + currentContainer).fadeOut(function() {
setTimeout(function() {
$("#headertxt").css({"display" : "block"});
animating = false;
}, 500);
});
};
But i don't want this…

mypolat
- 197
- 1
- 1
- 8
0
votes
2 answers
How to make this javascript text effect work?
Yesterday I was looking for a text effect using javascript. I was pointed to this fiddle: http://jsfiddle.net/vCx6W/1/ and this is where it was posted: …

KPO
- 890
- 2
- 20
- 40
0
votes
1 answer
jQuery highlight/zoom in hovered item and dim others
Hey all i am trying my best to find a way to, when hovered on with the mouse, dim the other options around it and also to zoom (bring forward) the hovered item the mouse is currently on.
My code can be found here > Code link
I have the fading items…

StealthRT
- 10,108
- 40
- 183
- 342
0
votes
1 answer
multiple jquery effects multiple times at specific timing
I've got this piece of code:
$("#au").click(function(){
$("#sca").delay(18625).effect("bounce","highlight",2000);
$("#scb").delay(26520).effect("bounce","highlight",2000);
$("#scc").delay(30884).effect("bounce","highlight",2000);
…

rudolf
- 61
- 1
- 7
0
votes
3 answers
CSS Transition for wrapper while showing / hiding / adding elements
I have a div which contains some elements that are hidden and some that are visible.
Now when i show one of the hidden elements (or hide a visible one) the height of the wrapping div changes. I also may add new elements to the div.
Example:

Nick Russler
- 4,608
- 6
- 51
- 88
0
votes
1 answer
Creating a hoverable tooltip
Here is a demo of what I am trying.
I am basically trying to create a tooltip effect. BUt When I browse the tooltip area, the box flashes on. It is due to the mouseleave and mouseenter being triggered.
Basic, structure is something like…

mrN
- 3,734
- 15
- 58
- 82
0
votes
1 answer
jquery animation for two function events for one click
im trying to do the following and hope someone can help me out with this?
I need the following;
user clicks an image (lets say #image1)
two functions are triggered, the first is a div (#div2) with an image in it fades up from the original click…

user1106295
- 95
- 2
- 9
0
votes
1 answer
Jquery slideup and down
I was wondering if there was a way to condense this code better so that I don't have to code every possible scenario. Any help is appreciated.
$('select.contactselect').change(function(){
var selectVal = $(this).val();
if(selectVal ==…

gschervish
- 293
- 2
- 5
- 15
0
votes
1 answer
Image scanner effect using jquery or javascript for web page
I need to develop a section for website where I need to show a scanner kind of effect on the image selected.
It would be something similar to: http://blog.gabrieleromanato.com/2011/11/jquery-scanner-effect-on-a-slideshow/
What I need is a image in…

Pawan Pillai
- 1,955
- 5
- 37
- 64
0
votes
3 answers
twitter bootstrap modal hide show effects
I've got elements in a twitter bootstrap modal that I want to hide and replace with others.
The hide and show work, but trying to add an effect - slide for example - doesn't.
Does anyone know how to do this?

Edward
- 3,429
- 2
- 27
- 43
0
votes
2 answers
bxSlider and custom effect
I am using http://bxslider.com and I want to remove all effects.
To be clear, I want effect like hide() and show() bewteen my images, just that.
Is anything like this possbile to do?
Thanks!

consigliere
- 73
- 3
- 11