$("#container").gridalicious({
animate: true,
animationOptions: {
queue: true,
speed: 200,
duration: 300,
effect: 'fadeInOnAppear',
complete: onComplete
}
});
According to the information provided...
The styling is incorporated within the JavaScript code itself, eliminating the necessity for an external style sheet.
If you visit and scroll down, you will find instructions on how to initialize it. It seems that it consists of a set of div
elements with the "item" class inside the designated container, like
<div id="container">
.
Update:
<!doctype html5>
<html>
<head>
<title>Testing the plugin</title>
<script type="text/javascript" src="path/to/jquery-latest.min.js"></script>
<script type="text/javascript" src="jquery.grid-a-licious.min.js"></script>
</head>
<body>
<div id="container">
<!--It is assumed that it requires divs with the "item" class, but they may be added automatically.-->
</div>
<script type="text/javascript>
//The initialization code mentioned above. Contains parameters (options) that are adjustable.
</script>
</body>
</html>