I don't have the site uploaded anywhere, as this is a local project (on the PC only).
HERE IS INDEX.HTML
Code:
<div id="splash">
<div class="splashContent">
<img src="images/splash/meet-solution.gif" width="660" height="200" alt="Meet Your Personalized Solution" />
</div>
<div class="splashContent">
<img src="images/splash/disaster-recovery.gif" width="660" height="200" alt="Nothing We Can't Help Recover" />
</div>
<div class="splashContent">
<img src="images/splash/meet-solution1.gif" width="660" height="200" alt="Meet Your Personalized Solution" />
</div>
<div class="splashContent">
<img src="images/splash/disaster-recovery2.gif" width="660" height="200" alt="Nothing We Can't Help Recover" />
</div>
</div>
<div id="splashPages">
<a href="#" class="prev">«</a>
<a href="#" class="toc">1</a>
<a href="#" class="toc">2</a>
<a href="#" class="toc">3</a>
<a href="#" class="toc">4</a>
<a href="#" class="next">»</a>
</div>
HERE IS THE CSS
Code:
#splash {
position: relative;
width: 660px;
height: 200px;
overflow: hidden;
}
#splash .splashContent {
position: absolute;
visibility: hidden;
width: 660px;
}
#splashPages {
font-family: 'Trebuchet MS', Arial, sans-serif;
margin: 3px 20px 0px 0px;
padding: 0px 0px 3px 0px;
text-align: right;
}
#splashPages a {
background-color: transparent;
color: #000;
font-size: .9em;
outline: none;
padding: 1px 5px 1px 5px;
text-decoration: none;
}
#splashPages a.selected {
background-color: #eee;
color: #bb2d12;
font-weight: bold;
}
#splashPages a:hover {
background-color: #bb2d12;
color: #fff;
}
HERE ARE THE TWO SCRIPTS
ONE
Code:
featuredcontentglider.init({
gliderid: "splash",
contentclass: "splashContent",
togglerid: "splashPages",
remotecontent: "",
selected: 0,
persiststate: false,
speed: 500,
direction: "rightleft"
autorotate: true,
autorotateconfig: [2000, 4]
})
TWO
http://www.dynamicdrive.com/dynamici...ntentglider.js
(This script is unmodified).
---
I'm using jquery-1.3.2.min.js
Also, this is not the entire index.html... just the Featured Content Glider part. I do have a DOCTYPE (Strict) and all the necessary information for it to validate @ W3C.
Thanks!
Bookmarks