Click to See Complete Forum and Search --> : Photo Animation


MistYkaLQT
11-06-2004, 08:10 PM
just wondering what the html codes are to animate a bunch of photos to flash one photo at a time... does that make sense.. i've seen it.. just don't know how to do it.. help please.. thanks.

PeOfEo
11-06-2004, 08:57 PM
If you want something to be animated use an animated gif. It will save you time and bandwidth. For a long production I suggest flash or embedding a video.

If you want a slide show do it with flash or dhtml or an embded video.

MistYkaLQT
11-06-2004, 09:02 PM
sorry.. i have no idea what you just said.. lol.. i was hoping to animate all MY photos.. just like you have on your icon. i want at least 20 of my photos to flash one at a time. how do i do that?

PeOfEo
11-06-2004, 09:07 PM
I would suggest you use macromedia flash. There is no way, in html, to do this. You can also use dhtml, but I suggest flash.

MistYkaLQT
11-06-2004, 09:18 PM
i'm not trying to make a video. it will be still pictures appearing on my screen one at a time.. this code in the bottom.. is all pictures at once based on the slide width of the marquee.. how do i make it so it is not marquee behavior. and flashes my photos one at a time.

<marquee behavior="alternate"><marquee width="200"><img src=http://c.myspace.com/00025/95/86/25456859_l.jpg>><img src=http://c.myspace.com/00025/57/86/25456875_l.jpg><img src=http://c.myspace.com/00025/28/96/25456982_l.jpg></marquee></marquee>

PeOfEo
11-06-2004, 09:23 PM
You cant. Like I said, it is not possible in html. If you want to do it use flash or dhtml.

MistYkaLQT
11-06-2004, 09:25 PM
i have a regular computer i don't have flash software and what is dhtml.

Ben Rogers
11-06-2004, 11:06 PM
Originally posted by MistYkaLQT
i have a regular computer i don't have flash software and what is dhtml. What does your computer have to do with anything? You can get flash software (http://www.macromedia.com/software/flash/). DHTML is Dynamic Hyper Text Markup Language, using JavaScript, CSS, and HTML to make your pages "dynamic".

shadowsword232
11-07-2004, 06:28 PM
microsoft has a FREE .gif animator you might wanna use. and there isn't a way to do it in html

Ben Rogers
11-07-2004, 06:42 PM
Originally posted by shadowsword232
microsoft has a FREE .gif animator you might wanna use. and there isn't a way to do it in html MS has a lot of things, and as I dare say it doesn't come with the OS, could you provide a link to this program?

PeOfEo
11-07-2004, 07:15 PM
microsoft loves us all :D

Ben Rogers
11-07-2004, 07:34 PM
Originally posted by PeOfEo
microsoft loves us all :D Microsofts loves gullible fools with a heavy wallet.

PeOfEo
11-07-2004, 09:43 PM
Originally posted by Ben R.
Microsofts loves gullible fools with a heavy wallet. Microsoft loves us man. Microsoft sponsored free hosting for the longest time and provides free solutions to use their technologies. Such as web matrix. Microsoft's love is an eternal unconditional love.

shadowsword232
11-07-2004, 10:34 PM
i'd post a link but i can't remember it. just google "free gif animator" or something like that. you might have to register to dl, they don't send out any spam though

jerrynix
11-07-2004, 10:53 PM
Check this location for the Javascript code to sequence through slides: http://javascript.internet.com/miscellaneous/basic-slideshow.html

You can also look through other code in the /miscellaneous folder for different ways to present images.

chriz
11-08-2004, 10:14 AM
or if u wanted it to do it auto. then try this:
<html><head>
<script language="javascript">
imgs = new Array;
imgs[0] = "img1.jpg";
imgs[1] = "img2.jpg";
//add one of these for each photo you want, but make sure you enter
//the correct URL and the numbers go up one at a time
imger = img.length;
counter = 0;
function crol(){
counter++;
if(counter > imger){counter = 0}
document.photo1.src = imgs[counter];
setTimeout("crol()",1500);
}

</script>
</head><body>
<img src="img1.jpg" name="photo1"></body></html>