EasySlide has function as following
example:
<div
id=imgstore
style="display:none">
<img src=lib-jquery-plugin-easy-slide-banner7.jpg title="she" rel=http://www.she.com>
<img src=lib-jquery-plugin-easy-slide-banner8.jpg title="worry" rel=http://www.worry.com>
<img src=lib-jquery-plugin-easy-slide-banner9.jpg title="what" rel=http://www.waht.com>
<img src=lib-jquery-plugin-easy-slide-banner10.jpg title="fire" rel=http://www.fire.com>
<img src=lib-jquery-plugin-easy-slide-banner11.jpg title="smell" rel=http://www.smell.com></div>
<div id=showhere></div>
you can name any DIV id you want,and put any number images of this container.
to initial the plugins just like
<script type="text/javascript"
src="path/to/jquery-1.2.1.pack.js"></script>
<script type="text/javascript"
src="jquery.myslide.js"></script>
<script>
$(document).ready(function(){
$.init_slide('imgstore','showhere',1,1,1000,1,5000,1);
});
</script>
$.init_slide(firstname,secondname,watermark,iscover,
speed,autoplay,playtime,clickable);
please keep following css on your page or style sheet ,you can edit any style or color you like.but don't change their name
.link_nor{//
for clickable normal link
background-color: #333333;
font: normal 76% "Arial", "Lucida Grande",Verdana,
Sans-Serif;
border: 2px solid #808000;
padding:0px 4px 0px 4px;
text-align:center;
color:white
}
.link_act
{// for clickable active
link
background-color:#808000;
font: normal 76% "Arial", "Lucida Grande",Verdana,
Sans-Serif;
border: 2px solid #808000;
padding:0px 4px 0px 4px;
text-align:center;
color:white
}
span{//
for watermark
font: normal 76% "Arial", "Lucida
Grande",Verdana, Sans-Serif;
color:black
}
.gray
{//
for cover
background-color: gray;
position: absolute;
border: 0px solid #9F6D11;
z-index: 100;
}
img{//
for image border
border: 0px solid #663300;
background-color: #663300
}
.opa{//
for watermark opacity
color:white;
padding:10px 20px 0px 20px;
position: absolute;
z-index: 101;
background-color: #FFA928;
opacity:0.5;
filter: alpha(opacity=50);
filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100,FinishOpacity=50,
Style=3, StartX=0, FinishX=100, StartY=0,FinishY=16);
-moz-opacity: 0.5;
}