Rotating Images

S

Skc

I have a website with a DRW which displays images (see:
www.italianfootwear.co.uk).

What I want to do now, is to include multiple images which rotate i.e.
fadein fade out. For an example see: www.austinowen.co.uk where the
multiple car picture shots rotate.

How do I do this with FrontPage DRW?

Please give me some pointers.

Thanks.
 
K

Kevin Spencer

Actually, you don't. That web site uses an animated GIF file to "rotate
images." It is possible to do so from a database using a Macromedia Flash
SWF, combined with Web Services, but that requires some fairly sophisticated
programming skills.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Everybody picks their nose,
But some people are better at hiding it.
 
T

Theresa Bennett

If you can use javascript in your DRW you could rotate them (one by one or
in sets as one graphic) with a random image display and preload your images
in the main page. It might be worth a try.

HTH
 
S

Skc

How do I use Javascript with <%ASP%>?

Can you let me have an example?

Thanks in advance.
 
S

Skc

I have looked at this site, but I am unsure on how to pass a <%ASP%> variable
within Javsscript. Can you help me with an example?
 
T

Theresa Bennett

Can you put JavaScript in the HTML of the page to rotate images instead of
pulling them from a database?
 
S

Stefan B Rusynko

You can't
What you need to do is generate the entire javascript w/ ASP response writes as is done w/ the date variable in the below sample:

<%
response.write "<script language='javascript'>" & chr(13)
response.write "function helloWorld()" & chr(13)
response.write "{alert(" & chr(34) & "Hello World. The date is " & date & "." & chr(34) & ");}" & chr(13)
response.write "</script>" & chr(13)
%>





|I have looked at this site, but I am unsure on how to pass a <%ASP%> variable
| within Javsscript. Can you help me with an example?
|
| "E. T. Culling" wrote:
|
| > Possibly find a java script at www.dynamicdrive.com
| > Eleanor
| > | > >I have a website with a DRW which displays images (see:
| > > www.italianfootwear.co.uk).
| > >
| > > What I want to do now, is to include multiple images which rotate i.e.
| > > fadein fade out. For an example see: www.austinowen.co.uk where the
| > > multiple car picture shots rotate.
| > >
| > > How do I do this with FrontPage DRW?
| > >
| > > Please give me some pointers.
| > >
| > > Thanks.
| >
| >
| >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top