Posts

Showing posts from February, 2011

How to creat slideshow in javascript

Slidesh Step 1: Open your webpage and paste the following code anywhere between <body> and </body>: <!----------------------------------------------> <!-- START OF CODE FOR THE SLIDESHOW --> <!----------------------------------------------> <!-- CONFIGURATION OF TEXT-STYLE STARTS HERE --> <style> .textstyle {                 /* style attributes for the comments */                 font-family:Arial;                 font-size:8pt;                 color:#aaaaaa;                 background-color:#FFFFFF;                 text-align:center;                 vertical-align:middle; } .boxstyle{                 /* style attributes for the slideshow-box */                 overflow:hidden;                 border-style:solid;                 border-width:1px;                 border-color:white;                 /* shadow for Firefox */                 -moz-box-shadow: 5px 5px 8px #AAAAAA;      
Ajaya