Blogroll

photoshop cs6 html 5 css php seo backlinks

adsense

Monday, 24 February 2014

CSS and Javascript Animated Box free tutorial

Definition and Usage

The animation property is a shorthand property for six of the animation properties:
animation-name
animation-duration
animation-timing-function
animation-delay
animation-iteration-count
animation-direction.
Note: Always specify the animation-duration property, otherwise the duration is 0, and will never be played.

Property Values

ValueDescription
animation-nameSpecifies the name of the keyframe you want to bind to the selector
animation-durationSpecifies how many seconds or milliseconds an animation takes to complete
animation-timing-functionSpecifies the speed curve of the animation
animation-delaySpecifies a delay before the animation will start
animation-iteration-countSpecifies how many times an animation should be played
animation-directionSpecifies whether or not the animation should play in reverse on alternate cycles
animation-fill-modeSpecifies what values are applied by the animation outside the time it is executing
animation-play-stateSpecifies whether the animation is running or paused
initialSets this property to its default value.
inheritInherits this property from its parent element. 

<html>
<head>
<style>
#myDIV
{
width:100px;
height:100px;
background:red;
position:relative;
animation:mymove 1s infinite;
-webkit-animation:mymove 1s infinite; /*Safari and Chrome*/
}

@keyframes mymove
{
from {left:0px;}
to {left:200px;}
}

@-webkit-keyframes mymove /*Safari and Chrome*/
{
from {left:0px;}
to {left:200px;}
}
@keyframes mynewmove
{
from {top:0px;}
to {top:200px;}
}

@-webkit-keyframes mynewmove /*Safari and Chrome*/
{
from {top:0px;}
to {top:200px;}
}
</style></head>
<body>

<p>Click the "Try it" button to change the value of the animation property.</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction()
{
document.getElementById("myDIV").style.animation = "mynewmove 4s 2";
document.getElementById("myDIV").style.WebkitAnimation = "mynewmove 4s 2"; // Code for Chrome and Safari
}
</script>

<p><strong>Note:</strong> The animation property is not supported in Internet Explorer 9 and earlier versions.</p>

<div id="myDIV"></div>

</body>
</html>

0 comments:

Post a Comment