The Animation library is used to perform animation effects on HTML elements by running sequence of frames.
The animate
method of Animation
library
can be used to animate the HTML elements. This method can also take additional
AnimationModel
. Refer to the following code snippet
to animate a multiple DOM element.
var animation = new ej.base.Animation({ duration: 5000 });
animation.animate('#element1', { name: 'FadeOut' });
animation.animate('#element2', { name: 'ZoomOut' });
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Animation</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript UI Controls">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/20.2.36/ej2-base/styles/material.css" rel="stylesheet">
<script src="https://cdn.syncfusion.com/ej2/20.2.36/dist/ej2.min.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="element1"></div>
<div id="element2"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>