MyBB Community Forums

Full Version: slideshow bugging?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Ive got a question about a slideshow i have created using javascript and css.

However, the slideshow works fine, but when you now visit the page, it first gives a kind of bugged switching or whatever it does there, after 5-6seconds it switches the images as it should. I am not sure why it does that(does maybe have 1.8 have to do something with it?), but may you check and tell me why it would do that or what i have to change.

http://forum.kiratest.freeiz.com/aboutdv.php

Thank You.

Here is the javascript i am using:

<script type="text/javascript">
$("#slideshow > div:gt(0)").hide();

setInterval(function() {
$('#slideshow > div:first')
.fadeOut(1000)
.next()
.fadeIn(1000)
.end()
.appendTo('#slideshow');
}, 3000);
</script>
well, MyBB 1.8 has nothing to do with it.
looks like there is no caching for the images & they are served from a remote images server ..
I have moved them to the forum server now, however still same issue.
What do you mean by "no caching for the images", what do i have to do then.

Nvm. Fixed.