Skip to content

Latest commit

 

History

History
83 lines (78 loc) · 1.64 KB

README.md

File metadata and controls

83 lines (78 loc) · 1.64 KB

transformer.js

Description: Its image slider plugin based on jQuery

Demo :

alt tag

http://cameopix.com/banner/

Documentation

#JS

$(document).ready(function(){
   $('#gellery').transformer({
			__Effects:new Array('Optimus','Ironhide','Scorponok','Megatron','Starscream','Jazz'),	
			__Columns:7,
			__Rows:3,
			__Speed:10000,
			__Title_Height:100,
			__Title_Width:0,
		});
)};

#CSS

#ImageSlider
		{
		height:380px;
		width:800px;
		text-align:left;
		}
	#gellery
		{
		height:380px;
		width:800px;
		text-align:left;
		position:absolute;	
		}
	 #ImageSlider #loader
		{
		background:url(bannerimage/loading_animated.gif) no-repeat;
		height:65px;
		width:65px;
		margin-top:150px;
		margin-left:355px;
		position:absolute;
		z-index:400;
		}
	#gellery DIV
		{ 
		position:absolute; 
		overflow:hidden;
		height:428px;
		width:981px;
		text-align:left;
		display:none;
		}
	#gellery IMG
		{
		position:absolute;
		height:380px;
		width:800px;
		text-align:left;
		}

#Html

  <div id="ImageSlider">
    	<div id="gellery">
    		<div><img  src="bannerimage/harrypotter.jpg"><p>Title</p></div>
    		<div><img src="bannerimage/inception.jpg"><p>Title</p></div>
    		<div><img src="bannerimage/transformer.jpg"><p>Title</p></div>											
    	</div>
  </div>