Recommend this page to a friend! |
Download |
Info | Example | Demos | Files | Download | Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
Not yet rated by the users | Total: 74 | All time: 467 This week: 3 |
Version | License | JavaScript version | Categories | |||
ifsmanimation 1.0 | MIT/X Consortium ... | 5 | Animation, HTML |
|
Create elegant HTML5 animations in responsive design easily and quickly, with only one line of javascript code!
You describe the DOM objects that you want to animate, attached them to the animation machine, and let's animate!
To use it, have a look on the examples provided...
iFSMAnimation is javascript library that allows to create animations from an html description.
Mainly, you need to create: * a HTML 'section' (or whatever) that will define where is defined the animation and HTML 'articles' to define the different objects that must be animated. * at the end, add a little script to start the animation... * that's it! You've got an animation that is RESPONSIVE ! Without having to know how to write javascript code lines...
The following example is a full animation that displays four pictures where different animations are applied. You could use this example as a starter template...
<!DOCTYPE html>
<html>
<head>
<script src="../extlib/jquery-3.2.0.min.js"></script>
<script src="../extlib/iFSM/iFSM.compressed.js"></script>
<script src="../iFSMAnimation.js"></script>
<style>
article {opacity:0;}
</style>
</head>
<body>
<div id="animation">
<section id="animation-objects"
data-delay-before-restart="1000"
data-box-responsive="true"
data-box-size-reference="700,700"
data-div-class="animationDiv"
data-loader-class="animationLoader"
>
<article id="HappyNewYear_B"
data-animation="animate,300,90,220"
data-enter-animation="display, 1000, 90, 104, 90, 104"
data-exit-animation="smoothHide,500,90,350"
>
<img src="images/B.png">
</article>
<article id="HappyNewYear_O"
data-animation="specialAnimate,300,{left:150;top:150;width:100}"
data-enter-animation="display,200,170,104,170,104,easeInOutElastic"
data-exit-animation="specialAnimate,300,{left:150;top:270;opacity:0;width:50}"
>
<img src="images/O.png">
</article>
<article id="HappyNewYear_N3"
data-animation="dummy"
data-enter-animation="display,200,262,220,262,220"
data-exit-animation="smoothHide,100,262,350"
>
<img src="images/N.png">
</article>
<article id="HappyNewYear_star"
data-animation="rotateNoWait,2000,3060"
data-enter-animation="display,1000,160,190,160,90,easeOutBounce"
data-exit-animation="smoothHide,100,160,260"
>
<img src="images/etoile.png">
</article>
</section>
</div>
<script>
$(document).ready(function() {
//initialize and start the general animation
$('#animation-objects').iFSMAnimation();
});
</script>
</body>
</html>
An animation is defined by a main animation object attached to a container such a 'section'.
Within the container, you define the different animated objects attached/described by a subcontainer that is by default an 'article'.
Take care to give an id to each object you will animate.
The animation starts by calling each animated objects using the 'data-enter-animation' and just after 'data-animation' attributes to animate them.
When all objects were animated, the animation applies the 'data-exit-animation' definition of every animated objects to ending their animations, and then loops back.
The 'data-delay-before-restart' attribute allows to define the delay before the animation restarts.
Example:
<section id="animation-objects" data-delay-before-restart="10000">
Boolean, if 'true', the animation will be 'responsive'. Limitations known with using 'specialAnimate'.
Example:
<section id="animation-objects" data-box-responsive="true">
"BoxWidth,BoxHeight" give the used dimensions as reference for the position of the animated objects. Useful in Responsive mode.
Example:
<section id="animation-objects" data-box-size-reference="551,551" >
Boolean, if 'true', the width and height will be fixed in order that the animation is fully shown on the window display. Example:
<section id="animation-objects" data-keep-height-visible="true">
Actually, a 'div' embeds the animation. It is possible to define the class that should be used on this div.
Example:
<section id="animation-objects" data-div-class="animation">
A loader may be set during initialization.
To display a loader, just indicate the class to use with the data-loader-class attribute.
Example:
<section id="animation-objects" data-loader-class="myLoaderClass">
These attributes define the animation of the object.
The available animation are: * dummy - non animation * animate - animate article from current position or startposition to destination
* duration
* destination-left
* destination-top
* startposition-left - optional
* startposition-top - optional
* easing function - see http://easings.net/fr - optional
* display - display article (opacity set to 1) with animation from current position or startposition to destination
* duration
* destination-left
* destination-top
* startposition-left - optional
* startposition-top - optional
* easing function - see http://easings.net/fr - optional
* smoothHide - display article (opacity set to 0) with animation from current position or startposition to destination
* duration
* destination-left
* destination-top
* startposition-left - optional
* startposition-top - optional
* easing function - see http://easings.net/fr - optional
* rotate - rotate article
* duration
* angle
* loop - loop animation
* duration
* destination-left
* destination-top
* startposition-left - optional
* startposition-top - optional
* loops number - optional default:infinite - give the number of loops
* loop back delay - optional default: duration - give the delay to go to the initial position
* specialAnimate, specialAnimateNoWait
* duration
* animation description object as in jQuery. ex: {left: 20;top:100;width:300}
* void
* void
* void
* easing function - see http://easings.net/fr - optional
* animateNoWait - same as animate but does not wait the end of animation to start the next animation * displayNoWait - same as display but does not wait the end of animation to start the next animation * smoothHideNoWait - same as smoothHide but does not wait the end of animation to start the next animation * rotateNoWait - same as rotate but does not wait the end of animation to start the next animation
To start the animation, you will need to add this script:
<script>
$(document).ready(function() {
//initialize and start the general animation
$('section').iFSMAnimation();
)};
</script>
array, defines the order of animation of the objects. By default, the order is the one found in the DOM.
string, gives the HTML tag to find the animated objects (in css/jquery format).
var myAnimationSequence=['#myAnimObj2','#myAnimObj1'];
$('#animation-objects').iFSMAnimation({animationSequence:myAnimationSequence})
$('#animation2').iFSMAnimation({animatedObjectDefinition:'div',debug:true});
In order to have the animation playing correctly, you can use the following css as a start:
body {
margin : 0px;
padding : 0px;
text-align : center;
}
/for the div that embeds your animation section, will center it/
#animation, .animation {
margin : 0 20% 30px 20%;
}
/for the main animation section container, let's have a background/
#animation-objects,.animated_section {
background-color: #1c3970;
}
/for the animated objects (here, all objects will start as hidden at beginning - opacity=0)/
section#animation-objects article {
opacity : 0;
}
The 'examples' folder gives you some examples on how to animate your DOM objects with iFSMAnimation...
To work properly, you need to include the following javascript library:
* jQuery (>= 3.2) <script type="text/javascript" src="extlib/jquery-1.10.2.min.js"></script>
* iFSM by intersel
* this library manages finite state machines and needs these libraries:
* doTimeout by "Cowboy" Ben Alman
* this library brings some very usefull feature on the usual javascript setTimeout function like Debouncing, Delays & Polling Loops, Hover Intent...
* `<script type="text/javascript" src="extlib/jquery.dotimeout.js"></script>`
* attrchange by Selvakumar Arumugam](http://meetselva.github.io/attrchange/)
* a simple jQuery function to bind a listener function to any HTML element on attribute change
* `<script type="text/javascript" src="extlib/jquery.attrchange.js"></script>`
If you need to do some specific animations, these libraries may be useful: * jquery.path - allows to animate objects following a path as an arc or a curve
$('#myAnimation').iFSMAnimation({
ANIMATION_NEEDED_SCRIPTS:[]
});
If you have questions or unsolved problems, you can have a look on the our FAQs or leave a message on the Issue board.
If you have any ideas, feedback, requests or bug reports, you can reach me at github@intersel.org, or via my website: http://www.intersel.fr
Files (121) |
File | Role | Description | ||
---|---|---|---|---|
examples (6 files, 2 directories) | ||||
extlib (2 files, 5 directories) | ||||
iFSMAnimation.js | Class | Class source | ||
LICENSE | Lic. | License text | ||
README.md | Doc. | Documentation |
Files (121) | / | examples |
File | Role | Description | ||
---|---|---|---|---|
images (24 files) | ||||
musique (1 file) | ||||
index-animation-following-path.html | Example | Example script | ||
index-sliders.html | Example | Example script | ||
index.html | Example | Example script | ||
index2.html | Example | Example script | ||
structure-sliders.css | Data | Auxiliary data | ||
structure.css | Data | Auxiliary data |
Files (121) | / | examples | / | images |
File | Role | Description |
---|---|---|
A.png | Icon | Icon image |
ajax-loader.gif | Icon | Icon image |
B.png | Icon | Icon image |
best_wishes_2015.png | Data | Auxiliary data |
bulles1.png | Data | Auxiliary data |
bulles2.png | Data | Auxiliary data |
cinq.png | Icon | Icon image |
deux.png | Icon | Icon image |
E.png | Icon | Icon image |
Eaccent.png | Icon | Icon image |
etoile.png | Icon | Icon image |
exclamation.png | Icon | Icon image |
logo-intersel.png | Icon | Icon image |
logo_intersel.png | Icon | Icon image |
N.png | Icon | Icon image |
O.png | Icon | Icon image |
petal-vert-605-871.png | Icon | Icon image |
petale-bleu-605-1032.png | Icon | Icon image |
petale-jaune-700-871.png | Icon | Icon image |
petale-violet-766-965.png | Icon | Icon image |
petales.png | Icon | Icon image |
snow.png | Data | Auxiliary data |
un.png | Icon | Icon image |
zero.png | Icon | Icon image |
Files (121) | / | extlib |
File | Role | Description | ||
---|---|---|---|---|
FitText (5 files) | ||||
iFSM (7 files, 3 directories) | ||||
jquery-ui (11 files, 2 directories) | ||||
jquery.path (4 files, 1 directory) | ||||
waitForImages (7 files, 4 directories) | ||||
jquery-2.2.4.js | Class | Class source | ||
jquery-3.2.0.min.js | Class | Class source |
Files (121) | / | extlib | / | FitText |
File | Role | Description |
---|---|---|
bower.json | Data | Auxiliary data |
CONTRIBUTING.md | Data | Auxiliary data |
example.html | Example | Example script |
jquery.fittext.js | Class | Class source |
README.md | Doc. | Documentation |
Files (121) | / | extlib | / | iFSM |
File | Role | Description | ||
---|---|---|---|---|
Examples (17 files) | ||||
extlib (8 files) | ||||
img (8 files) | ||||
.project | Data | Auxiliary data | ||
iFSM.compressed.js | Class | Class source | ||
iFSM.jquery.json | Data | Auxiliary data | ||
iFSM.js | Class | Class source | ||
LICENSE | Lic. | License text | ||
package.json | Data | Auxiliary data | ||
README.md | Doc. | Documentation |
Files (121) | / | extlib | / | iFSM | / | Examples |
File | Role | Description |
---|---|---|
Example_0.html | Example | Example script |
Example_1.html | Example | Example script |
Example_2.html | Example | Example script |
Example_AnalyseString.html | Example | Example script |
Example_Basic.html | Example | Example script |
Example_BouncingBall.html | Example | Example script |
Example_BouncingBa...cting_to_mouse.html | Example | Example script |
Example_Checkbox.html | Example | Example script |
Example_DropdownMenu.html | Example | Example script |
Example_HSM_calculator.html | Example | Example script |
Example_PushPopState.html | Example | Example script |
Example_Request.html | Example | Example script |
Example_Rulers.html | Example | Example script |
Example_Slideshow.html | Example | Example script |
Example_StimultatorSimulator.html | Example | Example script |
Example_Test_Bubbling.html | Example | Example script |
Mastermind.html | Example | Example script |
Files (121) | / | extlib | / | iFSM | / | extlib |
File | Role | Description |
---|---|---|
jcanvas.min.js | Class | Class source |
jquery-1.10.2.min.js | Class | Class source |
jquery-1.11.1.min.js | Class | Class source |
jquery.attrchange.js | Class | Class source |
jquery.dorequesttimeout.js | Example | Example script |
jquery.dotimeout.js | Aux. | Auxiliary script |
jquery.touchSwipe.js | Class | Class source |
Vector2.js | Class | Class source |
Files (121) | / | extlib | / | iFSM | / | img |
File | Role | Description |
---|---|---|
EnhancementRequest_closed.jpg | Data | Auxiliary data |
EnhancementRequest_duplicate.jpg | Data | Auxiliary data |
EnhancementRequest_opened.jpg | Data | Auxiliary data |
EnhancementRequest_original.jpg | Data | Auxiliary data |
EnhancementRequest_submitted.jpg | Data | Auxiliary data |
image1.jpg | Icon | Icon image |
image2.jpg | Icon | Icon image |
image3.jpg | Icon | Icon image |
Files (121) | / | extlib | / | jquery-ui |
File | Role | Description | ||
---|---|---|---|---|
external (1 directory) | ||||
images (6 files) | ||||
AUTHORS.txt | Data | Auxiliary data | ||
index.html | Example | Example script | ||
jquery-ui.css | Data | Auxiliary data | ||
jquery-ui.js | Class | Class source | ||
jquery-ui.min.css | Data | Auxiliary data | ||
jquery-ui.min.js | Class | Class source | ||
jquery-ui.structure.css | Data | Auxiliary data | ||
jquery-ui.structure.min.css | Data | Auxiliary data | ||
jquery-ui.theme.css | Data | Auxiliary data | ||
jquery-ui.theme.min.css | Data | Auxiliary data | ||
LICENSE.txt | Doc. | Documentation |
Files (121) | / | extlib | / | jquery-ui | / | external | / | jquery |
File | Role | Description |
---|---|---|
jquery.js | Class | Class source |
Files (121) | / | extlib | / | jquery-ui | / | images |
File | Role | Description |
---|---|---|
ui-icons_444444_256x240.png | Icon | Icon image |
ui-icons_555555_256x240.png | Icon | Icon image |
ui-icons_777620_256x240.png | Icon | Icon image |
ui-icons_777777_256x240.png | Icon | Icon image |
ui-icons_cc0000_256x240.png | Icon | Icon image |
ui-icons_ffffff_256x240.png | Icon | Icon image |
Files (121) | / | extlib | / | jquery.path |
File | Role | Description | ||
---|---|---|---|---|
test (2 files) | ||||
jquery.cssHooks.transform.js | Aux. | Auxiliary script | ||
jquery.path.js | Class | Class source | ||
README.markdown | Doc. | Documentation | ||
Vector2.js | Class | Class source |
Files (121) | / | extlib | / | jquery.path | / | test |
File | Role | Description |
---|---|---|
.sprocket.js | Aux. | Auxiliary script |
test.html | Example | Example script |
Files (121) | / | extlib | / | waitForImages |
File | Role | Description | ||
---|---|---|---|---|
dist (2 files) | ||||
libs (1 file, 2 directories) | ||||
src (1 file) | ||||
test (2 files) | ||||
.travis.yml | Data | Auxiliary data | ||
bower.json | Data | Auxiliary data | ||
CONTRIBUTING.md | Data | Auxiliary data | ||
Gruntfile.js | Class | Class source | ||
LICENSE-MIT | Lic. | License text | ||
package.json | Data | Auxiliary data | ||
README.md | Doc. | Documentation |
Files (121) | / | extlib | / | waitForImages | / | dist |
File | Role | Description |
---|---|---|
jquery.waitforimages.js | Class | Class source |
jquery.waitforimages.min.js | Class | Class source |
Files (121) | / | extlib | / | waitForImages | / | libs |
File | Role | Description | ||
---|---|---|---|---|
jquery (1 file) | ||||
qunit (2 files) | ||||
jquery-loader.js | Aux. | Auxiliary script |
Files (121) | / | extlib | / | waitForImages | / | libs | / | jquery |
File | Role | Description |
---|---|---|
jquery.js | Class | Class source |
Files (121) | / | extlib | / | waitForImages | / | libs | / | qunit |
Files (121) | / | extlib | / | waitForImages | / | src |
File | Role | Description |
---|---|---|
jquery.waitforimages.js | Class | Class source |
Files (121) | / | extlib | / | waitForImages | / | test |
File | Role | Description |
---|---|---|
jquery.waitforimages_test.js | Class | Class source |
waitforimages.html | Example | Example script |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.