Tagged Questions
0
votes
1answer
15 views
jQuery animate and slideDown simultaneously
How can I make animate and slide down functions below to happen at exactly same time and duration:
current_item.css('margin-left', 0);
current_item.animate({ 'marginLeft': '20px'});
...
1
vote
4answers
41 views
animate wont .stop() - annoyingly simple Jquery issue
I am new to Jquery and I am trying to get a search field to animate in and then when you click the close icon (#search-close) it animates out and the #search-close button disappears.
animating in ...
0
votes
2answers
42 views
Scroll smoothly to specific element on page
I want to have 4 buttons/links on the beginning of the page, and under them the content.
On the buttons I put this code:
<a href="#idElement1">Scroll to element 1</a>
<a ...
0
votes
0answers
13 views
jquery not animate and jqfloat
Hi all and thanks in advanced, am having troubles with this code:
the code works if i comment one of the lines animate() or jqFloat, but i can't make it work jqFloat after the animation is over, i ...
0
votes
1answer
34 views
Can't get JQuery .stop to work properly
I am using Jquery animate to have an image pop up upon hover over 'button' in a couple motions and then return. I am trying to use the stop function to prevent the image from jumping up and down when ...
1
vote
2answers
42 views
animate list items left and right
I have a little image slideshow with 8 picture, but only show 5 picture, the others are hidden.
This is the html
<div id="itemsListBox">
<ul>
<li><img ...
0
votes
2answers
44 views
jQuery select class outside “this”
Okay so this is my set up
HTML:
<a href="#">
<div class="video-play-button"></div>
</a>
<img class="video-image" src="URL" alt="" />
<div ...
0
votes
1answer
35 views
Jquery image stack animation
I have no skill with javascript or jquery. So i have tried to figure this out as best i can.
Im using jQuery 1.9.1 at the moment.
What im trying to do, is unpack or unstack a pile of images when the ...
0
votes
0answers
31 views
Using jquery to make image bounce up and down in a looping animation
I am new to jquery and want to create an effect of kids bouncing on a jumping castle (up and down motion) for a website I'm developing.
Below is a very cut down structure of the site. How do I make ...
1
vote
1answer
21 views
jQuery Animate Sibling Elements After Middle Siblings Removal
I'm currently working on an interface with dynamic add and remove file input boxes. Using jQuery I've been able to animate the visual appearance of the container element that holds all of the File ...
0
votes
0answers
28 views
jQuery slide[Down/Up] with Fade[In/Out]
Goal:
My goal is to use jQuery's slideDown with FadeIn or slideUp with FadeOut. I found several Google and StackOverflow search results to lead me to use the slide[Down/Up] with animate({opacity: ...
0
votes
0answers
13 views
animate() property isn't working in IE8. Can't load in Virtual Box
I've got a somewhat complex banner animation I'm working on based on this plugin: http://tympanus.net/Development/ParallaxContentSlider/
I am trying to troubleshoot it for IE, but on the PC I am ...
0
votes
0answers
39 views
How can I have commas displayed in jQuery numbers [duplicate]
I am trying to animate numbers to count up to the number specified in a div. This works but I would like the number to include the necessary commas. For example 62000000 should display as 62,000,000 - ...
1
vote
1answer
28 views
jquery setInterval or animate with easing
I've got a problem with setInterval and .animate(); during a project in jQuery/JavaScript.
I use the following code for start my interval:
interval=setInterval(function(){initspin()},40);
What ...
1
vote
0answers
11 views
Using Modernizr.prefixed in jQuery .animate
I'm not good with jQuery syntax as PHP is my thing.
I'm trying to produce a jQuery animation but with the correct vendor prefixes on multiple values, but my understanding of the usage of ...