Click here to Skip to main content
15,892,480 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi friends...

I have some problem to developing a project. A div container having some images with slide. When i run my project that images are load and also move the slide success in all browser but ie could not load the image. As a same time i have went next page then return back to my previous page that slid was perfectly run. So what is the problem in my project? Please help me everyone....
Posted
Comments
ZurdoDev 7-Mar-12 11:14am    
I am having a very hard time understanding what you are asking. I think, based on your title, you want a slide viewer? There are many, many free jQuery slide viewers if you look on google.

1 solution

if your images are static , try load them before load the script.
 
Share this answer
 
Comments
sureshveera 8-Mar-12 2:56am    
How to load it before script load?

<td valign="top" align="center">
<div id="SliderName_2" class="divIMG" style="padding-left: 4px;">
<img src="image/slide/1.jpg" alt="Slideshow Image 1" />
<img src="image/slide/2.jpg" alt="Slideshow Image 2" />
<img src="image/slide/3.jpg" alt="Slideshow Image 3" />
<img src="image/slide/4.jpg" alt="Slideshow Image 4" />
<img src="image/slide/5.jpg" alt="Slideshow Image 5" />
<img src="image/slide/6.jpg" alt="Slideshow Image 6" />
<img src="image/slide/7.jpg" alt="Slideshow Image 7" />
<img src="image/slide/8.jpg" alt="Slideshow Image 8" />
</div>

<div id="SliderNameNavigation_2" style="display: none;">
</div>

<script type="text/javascript">
effectsDemo2 = 'blinds';
var demoSlider_2 = Sliderman.slider({ container: 'SliderName_2', width: 500, height: 225, effects: effectsDemo2,
display: {
autoplay: 5000,
loading: { background: '#000000', opacity: 0.5, image: 'img/loading.gif' },
buttons: { hide: true, opacity: 1, prev: { className: 'SliderNamePrev_2', label: '' }, next: { className: 'SliderNameNext_2', label: ''} },
description: { hide: true, background: '#000000', opacity: 0.4, height: 50, position: 'bottom' },
navigation: { container: 'SliderNameNavigation_2' }
}
});
</script>
</td>

This is my coding.... Thanks.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900