Tagged Questions
0
votes
0answers
9 views
jsplumb animate connector lines
I have created a very simple set up with jsplumb that displays a top element and then connects that element to six others on the screen.
I am wondering if it is possible to animate the connector ...
0
votes
1answer
34 views
Optimize Jquery animation
I would like to know if there is a better way to do that :
//Menu text fadeOut
$(".fixed-menu ul li .menu-text, .submenu").fadeOut("slow", function() {
//Extend menu and move the slider
...
0
votes
1answer
35 views
Image mask animation in two stages – possible with jQuery?
I did a search and can’t find this exact question answered anywhere (please let me know if it has been and I’ve missed it!)
I’m trying to create an animation where four images are faded in over a ...
2
votes
4answers
56 views
Slow down an jquery animation
I have an animation that i have been trying to slow down but so far i have been unsucsessful i have tried duration and adding the time at the end however the animation seems to run at the same speed.
...
0
votes
1answer
34 views
Stop multiple animation function on complete and reset
I've got the following animation...
$('.animate_camper').click(function(){
startCamper();
setTimeout("leaveScreen()",1000) ;
});
var num = 1;
function startCamper(){
num++;
...
0
votes
0answers
21 views
clicking instead of space bar for this template
I am working on a website that works CSS animation. So to navigate to different parts user should press the space bar, but I like to change it to click button in the free area.
Here is an example that ...
0
votes
0answers
99 views
Why is this jquery animation so laggy/choppy in Safari? [closed]
I am using the jquery cycle plugin and animating elements within each element. But what I am finding is in my version of Safari (5.1.7, Windows 7), the animations are not very smooth and a bit choppy. ...
0
votes
0answers
91 views
Android app crashes when trying to animate sprite using cocos2d
In my android game I'm trying to spawn a projectile that flies across the screen and has an animation using 4 .png files. However whenever a projectile spawns it crashes the entire app. Here's my ...
0
votes
4answers
134 views
jQuery animate only one item (div) on hover (img)
The situation is to make jQuery animating only one element when another one is hovered. Now I get all the items animating when hover action begins.
Code:
<table width="630" border="0" ...
-1
votes
3answers
99 views
How to chain multiple jquery animation functions?
Hi I'm having some jquery troubles!
I have several buttons, that all need to launch a unique animation effect onclick. Different animation for each button!
I have a block of code i'm using that ...
0
votes
1answer
84 views
scroll to position jquery offset animation
i am using the following code to scroll down to my contact section at the bottom of the page which was working perfectly, until i added a fixed navigation at the top of the page to scroll down with ...
0
votes
1answer
67 views
JQuery sliding code not working
I am new to JQuery and am trying to make a div slide out from right to left, and then slide back in from left to right. The code I am using is:
function addListeners()
{
...
0
votes
1answer
63 views
Scroll smoothly down and hide scroll bars
I have a page with 2 div's(#page1 and #page2 above each other which are exactly the size of the browser window(calculated by jQuery). When I click on the div with id: name I want the page to scroll ...
1
vote
2answers
76 views
What are the basics for creating animations in web apps?
I am looking into how to create a simple animation in an HTML5 app. I want to start with an off-page canvas (with top set to 100% of the window height), and animate it to the middle of the screen, ...
1
vote
1answer
39 views
layering up Canvas to make a background
With some help of other Stack Overflow members. I've created an Animated canvas section of a website that i am building.
I'm pretty new to Canvas, what I want to do is have an Animated Arc/Circle
...