Results 1 to 3 of 3

Thread: Problem with images not showing in slideshow

  1. #1
    Join Date
    May 2014
    Posts
    9
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Problem with images not showing in slideshow

    1) Script Title: Ultimate Fade-in slideshow

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...nslideshow.htm

    3) Describe problem:

    I'm using the Ultimate Fade-in slideshow, but I cannot get the images to show in the slideshow.
    The slideshow is supposed to start when clicking on the green button on this page: http://joachimjepsen.dk/flyt-dig (the green button has the text: "Forstyr ham")

    As you can see on the webpage I linked to above, there are no images showing - neither does they show when you click on the green button.

    Here is the code I have used:

    Code:
    <div id="drawing" align="center">
    	<div id="fadeshow1" style="width: 400px; height: 400px; margin-left: auto; margin-right: auto;">&nbsp;</div><a id="flytDig" name="flytDig" href="javascript:startShow();"><img src="/images/slideshow/flyt_forstyrham.jpg" alt="" /></a>
    </div>
    <p>
    	<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    	<script type="text/javascript" src="/fadeslideshow_mod.js">
    		// <![CDATA[
    		/***********************************************
    		 * Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
    		 * This notice MUST stay intact for legal use
    		 * Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
    		 ***********************************************/
    		// ]]>
    		
    	</script>
    	<script type="text/javascript">
    		// <![CDATA[
    		var mygallery = new fadeSlideShow({
    			wrapperid: "fadeshow1",
    			//ID of blank DIV on page to house Slideshow
    			dimensions: [400, 400],
    			//width/height of gallery in pixels. Should reflect dimensions of largest image
    			imagearray: [
    				["/images/slideshow/flyt_flue1.gif", "", "", ""],
    				["/images/slideshow/flyt_flue2.gif", "", "", ""],
    				["/images/slideshow/flyt_flue3.gif", "", "", ""],
    				["/images/slideshow/flyt_flue4.gif", "", "", ""]
    			],
    			displaymode: {
    				type: 'manual'
    			},
    			persist: false,
    			fadeduration: 700,
    			descreveal: "ondemand",
    			togglerid: ""
    		})
    			function startShow() {
    				var interval = 2500;
    				var endInterval = 1000;
    				document.getElementById('flytDig').style.visibility = 'hidden';
    				setTimeout('mygallery.showslide(1)', 0);
    				setTimeout('mygallery.showslide(2)', interval);
    				setTimeout('mygallery.showslide(3)', interval * 2);
    				setTimeout('mygallery.showslide(0)', interval * 3 + endInterval);
    				setTimeout("document.getElementById('flytDig').style.visibility = 'visible';", interval * 3 + endInterval);
    			}
    			// ]]>
    			
    	</script>
    </p>
    The website is a joomla based website.

    I hope you can help me sort this out
    Last edited by joac1424; 08-11-2015 at 07:47 PM.

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    The reference to fadeslideshow.js inside your <script> tag currently is broken: http://joachimjepsen.dk/fadeslideshow_mod.js

    Also, when the page loads, there is another JavaScript error (which you can tell if you use your browser's console F12 key):

    Code:
    TypeError: jQuery(...).supersubs is not a function
    DD Admin

  3. #3
    Join Date
    May 2014
    Posts
    9
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by ddadmin View Post
    The reference to fadeslideshow.js inside your <script> tag currently is broken: http://joachimjepsen.dk/fadeslideshow_mod.js
    That was the problem.. Thank you very much, it's working just as it should now!

Similar Threads

  1. Flexi slideshow not showing images
    By raarcam in forum Dynamic Drive scripts help
    Replies: 1
    Last Post: 10-20-2010, 04:37 AM
  2. Images not showing in Ultimate Fade In Slideshow
    By DeckyB28 in forum Dynamic Drive scripts help
    Replies: 7
    Last Post: 03-25-2010, 07:45 PM
  3. Why Images Not Showing in Carousel Slideshow
    By Privileged in forum Dynamic Drive scripts help
    Replies: 1
    Last Post: 10-03-2009, 03:20 AM
  4. fading slideshow; images not showing; CSS problem?
    By Steve in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 10-26-2005, 05:56 AM
  5. Fade-in slideshow - Images not showing
    By LauraLynn in forum Dynamic Drive scripts help
    Replies: 1
    Last Post: 07-27-2005, 09:59 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •