It seems to be a script called TMSlider, but I can't find it online, so I'm not sure if it's free to use or not. Anyhow, three scripts on that page control it:
The jQuery library:
Code:
<script type="text/javascript" src="js/jquery-1.6.3.min.js">
The main script for this slider:
Code:
<script type="text/javascript" src="js/tms-0.3.js">
And an extra bit of script at the bottom of the page:
Code:
<script>
$(window).load(function() {
$('.slider')._TMS({
duration:800,
easing:'easeOutQuad',
preset:'simpleFade',
slideshow:7000,
banners:'fade',
pauseOnHover:true,
waitBannerAnimation:false,
nextBu:"._next",
prevBu:"._prev"
});
});
</script>
If you view the source code of the page, you could grab the HTML for the slider, and also the CSS styles. And the scripts are there before your eyes, too. But different bits will go in different places in WP, You could link to all of the scripts just before the closing <body> tag (so find the template for that) and set up the gallery code in the template that holds that part of the page. (I'm not all that familiar with WP any more, I'm afraid.)
Bookmarks