remove slider javascript

This commit is contained in:
Frédéric Péters 2012-04-18 08:30:53 +02:00
parent ce94cec44a
commit 659fee62ae
1 changed files with 0 additions and 43 deletions

View File

@ -149,48 +149,5 @@
</div>
</body>
<!-- JavaScript Slideshow by Patrick Fitzgerald http://slideshow.barelyfitz.com/ -->
<script src="/slide_portlet/slideshow.js" type="text/javascript"></script>
<script type="text/javascript">// <![CDATA[
SLIDES = new slideshow("SLIDES");
// Create some slides and add custom filters for Microsoft IE
SLIDES.add_slide(s = new slide('/slide_portlet/pics/pic01i.jpg'));
s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
SLIDES.add_slide(s = new slide('/slide_portlet/pics/pic02i.jpg'));
s.filter = 'progid:DXImageTransform.Microsoft.Fade()';
SLIDES.add_slide(s = new slide('/slide_portlet/pics/pic03i.jpg'));
s.filter = 'progid:DXImageTransform.Microsoft.Barn()';
// ]]></script>
<script type="text/javascript">// <![CDATA[
if (document.images) {
SLIDES.image = document.images.SLIDESIMG;
// Create a function to ramp up the image opacity in Mozilla
var fadein_opacity = 0;
var fadein_img = SLIDES.image;
function fadein(opacity) {
if (typeof opacity != 'undefined') fadein_opacity = opacity;
if (fadein_opacity < 1 && fadein_img && fadein_img.style &&
typeof fadein_img.style.MozOpacity != 'undefined') {
fadein_opacity += .05;
fadein_img.style.MozOpacity = fadein_opacity;
setTimeout("fadein()", 50);
}
}
// Tell the slideshow to call our function whenever the slide is changed
SLIDES.post_update_hook = function() { fadein(0); }
}
SLIDES.loop();
// ]]></script>
</html>