HTML5-ANIMATION is a way to animate HTML element with css or java script or both....

learn more… | top users | synonyms

0
votes
1answer
112 views

Get the rotate amount in animate a div through a SVG path

From my last post helped to animate a div through a SVG path. Success and div "#car" animating through my path. Now the problem is how to rotate/ transform the div according to the curve ? ie if it ...
1
vote
1answer
117 views

How to draw the HTML 5 Canvas and split the quadrant wise and also make the circle rotate the quadrant clickable

I have drawn the circle and separated the 6 equal quadrants using HTML 5 Canvas, I have to make every quadrant clickable, when its clicked it has to rotate it and also needs to redirect to another ...
0
votes
1answer
227 views

How can I give an HTML 5 banner a transition animation on iOS?

I'm implementing an app demo that after a prompt (where it calls back to the server) displays an HTML5 banner at the top of the screen. However, I can't figure out how I can animate the HTML5 banner ...
0
votes
0answers
88 views

Exporting Flash elements to Adobe Edge, Photoshop, etc

I am trying to export specific elements(illustrations) from a Flash animation slide to use on Adobe Edge or Photoshop so I can develop an HTML5 animation. Is there a method, program, or a solution ...
3
votes
1answer
811 views

game performance of html5 canvas and pure Javascript/GWT

I want to write an animated game which needs a lot of animations running all the time, something like rolling the cards/images in slot machine. I am wondering if I should mainly use just pure ...
0
votes
2answers
113 views

Image is flickering continuously in pressing button?

The Image is flickering as I continuously push the button. The problem might be in ctx.clearRect(0,0,100,500) . How can I resolve the problem? I am trying to animate in HTML 5 canvas. I need a moving ...
0
votes
2answers
176 views

HTML5 how to draw transparent overlapping spheres?

I have a complex HTML5 task.. I need to draw transparent overlapping spheres. Please have a look at: http://imgur.com/7cCkt I need to draw a sphere which is easy, But, I need to fill it as it look ...
-1
votes
1answer
166 views

Image Strip in HTML5

I want to make horizontal strip of image thumbnails using HTML5 and CSS3. and scroll it horizontally. can anyone tell me how do i proceed?
1
vote
0answers
161 views

Playing HTML5 embedded sound on Android

I have a Flash animation with sound that I converted to HTML5. When I play it in a WebView or open it with the device browser, there is no sound. I've tried several sound formats with no success. I ...
0
votes
0answers
120 views

JQuery Canvas Image-stitch

So I have canvas element and I have a long png file that I would like to animate downwards when a user presses a button (which is an image) but I would like this as a stitched image ! Then in some ...
0
votes
1answer
912 views

How can I play an Edge animation onclick?

I want to have an Adobe Edge animation, which plays after a visitor clicks an ordinary HTML form button. How can this be done?
0
votes
2answers
798 views

Real world 3D model using CSS3 / Javascript

I need to rotate/animate 360 deg. a real world 3D object from Smart Phones browsers. When a user scrolls on screen that real world object (e.g. a car) needs to rotate or animate. One option can be ...
0
votes
0answers
103 views

Flashing rectangles using webGL

Hi I have the following code for drawing rectangles on a canvas. I wanted to know how I could individually flash these rectangles. Say, an on-off sort of a thing. Thank you. code: <html> ...
3
votes
1answer
987 views

CSS3 Smooth transition when dynamically changing animations

I have two keyframe animations "Bounce-In" and "Bounce-Out" the Bounce-In animation takes 1.2 seconds to complete, but if a user triggers the Bounce-Out function before it's finished it will jump to ...
0
votes
1answer
815 views

transitionTo method of kineticJs not working on click event

I am using transitionTo method of kineticJS to show animated rotation of a shape on click event of mouse. It works fine if we click the shape first time but then on subsequent clicks it does not ...
0
votes
1answer
639 views

Rotating a circle on mouse click by particular angle using transitionTo of kineticJs

I have a circle with 4 sectors. On clicking sector 1 and 3, circle should rotate by a particular angle, say 45degrees in clockwise direction and on clicking sector 2 and 4, circle should rotate in ...
0
votes
0answers
112 views

HTML5 2D random movement and collision detection

I'm new to html5 and i want to create an asteroid game, which move randomly in the canvas and also detecting collisions with borders as well as with other asteroids. I will be thankful if some one can ...
-1
votes
1answer
149 views

Screen flashing between two colors fast enough so not conceivable by the human eye

Hi I'm trying to have a flashing screen where the color changes between two colors in WebGL. I have the code setup for a square with one color but couldn't figure how to make it switch between two ...
1
vote
4answers
368 views

Canvas or PNG? (for html5 animation)

I'm going to develop an html5 rich animation. I've already design the components in Illustrator, but now the question is how to export this components? via Canvas object? or via Image(png)?. Notice ...
0
votes
1answer
196 views

Exporting Flash to HTML5, compatible with Android2.3

I would like to create animations compatible with Android2.3, using Adobe Flash Pro CS6. Since I don't want to be dependent on Flash Player on the device, I would like to save the animation as HTML5. ...
0
votes
1answer
139 views

How to make a HTML5 animation like the one on Blackberry PlayBook startup?

I just want to know how to code a animation like the one on the startup of the Blackberry PlayBook with big colored circles using HTML5 canvas and JS (with some JS drawing library?). Can the same be ...
1
vote
1answer
638 views

The story of send of Gmail How does it work?

I am really astonished by the Story of send from Google. Could anyone tell me how does it work under the hood? Where should I start to learn this set of techniques to build such a nice and great ...
0
votes
0answers
157 views

Ideas on HTML 5 App with animation

it is my first time to develop an HTML 5 App, I need some Idea on how can I implement an HTML 5 App with animation that will be compatible on a ipad web browser. Here's the scenario. On the first ...
0
votes
2answers
1k views

Path based animation in html5 canvas

How to make a path-based animation with paper.js E.G bezier curve.
0
votes
1answer
374 views

Loops in HTML5 Canvas Animations

I am writing code for a HTML5 Canvas animation using Javascript. I am using requestAnimFrame for that. Animation is working fine for a point. But when i add a loop(for or while) in the function which ...
-1
votes
1answer
247 views

HTML5 : how to hide a div while srolling

I need to hide a div when someone is scrolling the page. And also show the div when stop scrolling. is it possible to do this for touch screen application with HTML5 or Jquery. could anyone help me ...
1
vote
1answer
70 views

Points not getting drawn when reproducing curve on HTML5 canvas

We are trying to reproduce a curve drawn on an HTML5 canvas, X points every 100 MS, but some points get lost in the reproduced copy. We have all the points used for the original curve. Original ...
0
votes
1answer
639 views

after webkit transition “hide”(display:none) div

I have something like this: <style> #submenu { background-color: #eee; height:200px; width:400px; opacity: 1; -webkit-transition: all 1s ease-in-out; } ...
2
votes
2answers
267 views

How to identify shapes in Canvas?

If I define a canvas and draw few shapes onto it, then how can I pinpoint each of the shape or image so as to declare events and other properties on the each shape. Consider I have a Rectangle and a ...
0
votes
3answers
313 views

Which js library to use for creating not complicated animation with html5 canvas?

I want to write some animation with html5 canvas element. I found that there are some js libraries that help to leverage canvas functionality. For example KineticJS, FabricJS. But I don't know which ...
0
votes
3answers
283 views

copy non transparent pixels only to HTML5 canvas

I am writing a coloring game for small children, where I have a black and white image shown on a canvas initially, and as the user moves the drawing tool (mouse) over the canvas, the black and white ...
0
votes
1answer
506 views

HTML5 Context/Canvas - when to call draw on the context

I'm writing a little object oriented style javasscript demo -- just to draw a bunch of balls moving around the screen. nothing fancy, no collision detection or anything at this point. Consider it ...
1
vote
1answer
2k views

KineticJS - on click event

I am working on a small application working with KineticJS. I have a circle created and am fading it in upon page load... the problem I am running into is that when I click the main circle to "spawn" ...
0
votes
2answers
523 views

JavaScript: HTML5 and sliding a ball up the page

I am a newb when it comes to HTML5 and the infamous Canvas element. Currently, I have a blue ball drawn on my webpage and on click of the canvas element, the ball slides up to a position (Y) that I ...
0
votes
1answer
815 views

SVG elements will not Animate when added dynamically

I have trying to achieve SVG element's animation while adding dynamic DOMs for its animation with jQuery. I generate DOMs with JS, so HTML page does not have any elements for this animation. When I ...
2
votes
2answers
271 views

how to reverse animation in IMPACTJS

i am using ImpactJS to create a game on HTML5 and JS, when a animation is running, is it possble at any frame to reverse the animation frame flow (not flipping) ? I used rewind(), it only gets back to ...
2
votes
1answer
819 views

Using WebGL 3D Shapes as 2D Canvas Images

I'm creating a 2D Canvas game with cubes raining down on players. Their goal is to shoot or dodge them. Right now the cubes are just 2D JavaScript OOP entities. What I want to do is replace the 2D ...
4
votes
2answers
2k views

CSS3 Multiple Transitions of the Same Element

I am trying to make a dropdown effect for one of my background images. I was able to do it using css3 but it's not complete. The effect is supposed to be a curtain that drops down then sort of ...
1
vote
2answers
497 views

HTML5 : drawing round corner rectangle as animation

I'm able to draw a rectangle with rounded corner with following code. What I'm looking is I want to form this as an animation - starting from one point and draw the line which ends at the beginning ...
3
votes
3answers
166 views

Where are the authentic CSS3 Animation specs followed by WebKit and Mozilla?

Well I am looking for a complete definitive CSS3 Animation spec so that I am limited by those mentioned in tutorials for Dummies. Whenever I search the internet I only come across various tutorials ...
3
votes
2answers
7k views

Spin wheel image in HTML5 (e.g., roulette wheel)?

What's the best way to emulate a spinning roulette wheel in HTML5? The wheel spinning should be controllable by some input (i.e., speed of spinning based on some user input). The wheel labels should ...
4
votes
1answer
471 views

Why does requestAnimationFrame function accept an element as an argument?

I am just trying to understand why the hell window.requestAnimationFrame is accepting the second parameter as an element, what is the reason behind that? I am curious to know the underlying ...
0
votes
2answers
387 views

How can I fixed image position in js or css ? I have ferris wheel I want my all the image should be standing position while rotating

How can I fixed image position in js or css ? I have ferris wheel I want my all the image should be standing position while rotating. I want to be like this : http://jsdo.it/proppy/plUk/fullscreen see ...
0
votes
1answer
703 views

Adding a CSS3 movement animation to HTML5 Video

I am trying to add a movement animation to a HTML5 video, but the result is very shaky and not smooth at all. The HTML is: <div id="video"> <video width="320" height="240" ...
0
votes
1answer
254 views

How can I implement an application like Prezi.com flash prezentation editor?

I really like the zooming process in Prezi.com flashs app. I didn't find any documentation on how to implement the prezi app. Maybe some of you knows how to design or implement the final zoom by ...
4
votes
1answer
681 views

Sketching effect with HTML5 canvas

I have a JPEG image consisting of handedly-sketched contours of a city. I want to achieve a slowly-sketching effect drawing these contours on an empty area from left to right. How can I do that based ...
2
votes
2answers
511 views

Is there a way to detect 3G and 2G connections speed on mobile phones and handheld devices?

Is there a way to detect 3G and 2G connections on mobile phones and handheld devices? Like If I want to deliver High-end Website when user is on 3G and Highly optimized version if user is on 2G.
1
vote
1answer
4k views

CSS3 webkitAnimationEnd event ordering

I'm new to stackoverflow and also relatively new to HTML5 programming. I'm writing something (for Safari, primarily) where the logic is driven by the events which get fired out when webkit animations ...
3
votes
1answer
4k views

Zooming with canvas

In a test application i have a canvas with a simple rectangle on it. The method draw is called every 100ms. as you can see from the code i'm using the Mousewheel to scale everything. What happens now ...
1
vote
2answers
748 views

css3 animations frame by frame

I need to do an animation frame-by-frame changing a background-position of an element. I need to do this WITHOUT easing or linear animation, just changing the background-position. Is it possible to ...

1 2