What is this plugin?

Guaji

Regular Member
Joined
May 28, 2009
Messages
441
Reaction score
229
Hey Guys just a question, anyone knows what is this plugin:

Code:
http://www.fansfrontierville.com/2011/06/nuevas-imagenes-de-pioneer-trail.html

(check the images)

and is there any possibility to use it on PHP and not wordpress (or something similar that looks equally cool like this)
 
Oh i must say thats cool :D

The website is on blogger.com

So Its not a plugin but its a custom made script or something.

/* contact the website owner he might provide you some information about it */
 
Oh i must say thats cool :D

The website is on blogger.com

So Its not a plugin but its a custom made script or something.

/* contact the website owner he might provide you some information about it */

tried that but it seems that he hit the ignore button lol
 
It's called SpaceGallery, a jQuery plugin: eyecon.ro/spacegallery/
 
It's called SpaceGallery, a jQuery plugin: eyecon.ro/spacegallery/


Hey Opinsu that is the plugin, but do you know how to install it in a normal php file (not wordpress) and it doesn't seem a normal plugin. Anyone knows how to install it other that the "guide" that they provide in the site.

Code:
[B]Implement[/B]

                 Attach the Javascript and CSS files to your document.  Edit CSS file and fix the paths to  images and change colors to fit  your site theme. [B]Important:[/B] be sure to include Javascript files in the specific order as in the example below.
                 <link rel="stylesheet" media="screen" type="text/css" href="css/spacegallery.css" />
<script type="text/javascript" src="js/eye.js"></script>
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/spacegallery.js"></script>
                                 [B]Invocation code[/B]

                 Prepare a block level element with some images  inside. All you have to do is to select the elements in a jQuery way and  call the plugin.
                 $('#myGallery').spacegallery({loadingClass: 'loading'});
                                 [B]Options[/B]

                 A hash of parameters. All parameters are optional.
                                  	                 		[B]border[/B]                 		integer                 		Images' border. Default: 0                 	                 	                 		[B]duration[/B]                 		integer                 		Animation duration. Default 800                 	                 	                 		[B]perspective[/B]                 		integer                 		Perpective height. Default: 140                 	                 	                 		[B]minScale[/B]                 		float                 		Minimum scale for the image in the back. Default: 0.2                 	                 	                 		[B]loadingClass[/B]                 		string                 		CSS class applied to the element while looading images. Default: null                 	                 	                 		[B]before[/B]                 		function                 		Callback function triggered before going to the next image                 	                 	                 		[B]after[/B]                 		function                 		Callback function triggered after going to the next image
 
Back
Top