Welcome to TalkGraphics.com
Page 4 of 4 FirstFirst ... 234
Results 31 to 37 of 37
  1. #31
    Join Date
    Oct 2006
    Location
    UK
    Posts
    216

    Default Re: Animated gifs on a website :)

    Quote Originally Posted by Big Frank View Post
    Remove the

    Code:
    F:\
    from the image URLs. I am assuming the images are in the same directory (folder) as the page that contains your script.
    Thank you very much Frank, i didn't have the images in the correct folder and thanks for all the help guys, i got there in the end

  2. #32
    Join Date
    Dec 2000
    Location
    Hautes Pyrénées, France
    Posts
    5,083

    Default Re: Animated gifs on a website :)

    It's been a pleasure helping you - knew you'd get there in the end.
    If someone tried to make me dig my own grave I would say No.
    They're going to kill me anyway and I'd love to die the way I lived:
    Avoiding Manual Labour.

  3. #33
    Join Date
    Aug 2000
    Location
    Harwich, Essex, England
    Posts
    21,917

    Default Re: Animated gifs on a website :)

    Suunto,

    I attach the fla file I used to create the animation. Place the swf file where your current gif file is. You'll also need to include the jpg files in the same directory as the swf file.
    Attached Files Attached Files
    Egg

    Intel i7 - 4790K Quad Core + 16 GB Ram + NVIDIA Geforce GTX 1660 Graphics Card + MSI Optix Mag321 Curv monitor
    + Samsung 970 EVO Plus 500GB SSD + 232 GB SSD + 250 GB SSD portable drive + ISP = BT + Web Hosting = TSO Host

  4. #34
    Join Date
    Nov 2004
    Location
    Israel
    Posts
    2,538

    Default Re: Animated gifs on a website :)

    Quote Originally Posted by nchurene View Post
    thanks for your video lessons. i was really interested in your video lessons but every thing was in a different language actually Arabic of which i didn't even know where to log on
    could you pls help me or give me a simple way to log on
    Hmmm since I don't see any Arabic-like video lessons in these post I presume you mean me (?)

    I just used my host to upload my college site there. It's Hebrew actualy and it has nothing to do with video tutorials. I forgot to remove my link until I actually upload the relevant site, which is going to be in english don't worry.
    Last edited by Availor; 14 October 2006 at 03:54 PM.

  5. #35
    Join Date
    Oct 2006
    Location
    Germany
    Posts
    8

    Default Re: Animated gifs on a website :)

    Quote Originally Posted by suunto View Post

    ps, yes magicmesh, i'll give it a go, can you post it please
    I did not found the Script but i'll create it from scratch


    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    
    <head>
    	<title>Random Image</title>
    	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    	<meta http-equiv="Content-Script-Type" content="text/javascript" />
    	<script type="text/javascript" language="JavaScript">
    	/*<![CDATA[*/
    	function startShow() {
    		// Define Globals Vars
    		myImage = document.getElementById('randomImage')
    		changeInterval = setInterval('randomImage()', 2000);
    	}
    	function randomImage() {
    		var randomNum = (Math.round((Math.random()*7)+1))
    		myImage.src = 'img/pict'+randomNum+'.jpg'
    	}
    	/*]]>*/
    	</script>
    </head>
    
    <body onload="startShow()">
    	<img id="randomImage" src="img/pict1.jpg" alt="The Random Image" />
    </body>
    
    </html>

    You can preview it here or Download the tarball with images.

    Here is another (more complex) Script i'll made in the past. It's a slide Show and doesnt show Random Images but maybe its intresting for someone too.
    http://tmp1.dotmagic.de/js/slides2/

  6. #36
    Join Date
    Nov 2004
    Location
    Israel
    Posts
    2,538

    Default Re: Animated gifs on a website :)

    If found THIS it can be useful for you.

  7. #37
    Join Date
    Oct 2006
    Location
    UK
    Posts
    216

    Default Re: Animated gifs on a website :)

    thanks you guys
    magicmesh, i'm totally mpressed that you couldn't find it but started from scratch, don't have a clue how you understand that but thanks

 

 

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
  •