Is there any way to mix both horizontal and vertical photos in one
Javascript slide show? When I try to add a vertical image after the series
of horizontal images in the array below, the vertical image is always
"squished" into the horizontal image size.
If that's not possible, is there someway to show a series of horizontal
images, then switch *seamlessly* to a series of vertical images without
opening a new page?
thanks, Suz
<TITLE>Endless River Adventures</TITLE>
<SCRIPT LANGUAGE=JAVASCRIPT>
<!-- Hide script from old browsers
// This script copyright 1997, Tom Negrino and Dori Smith.
// This script is from "JavaScript for the WWW, Visual QuickStart
Guide, 2nd Ed."
// For more information, see <http://www.chalcedony.com/javascript/>.
// This script may be used and modified, but the copyright notice
must remain intact.
var myPix = new
Array("art/ecua1b.jpg","art/ecua2b.jpg","art/ecua3b.jpg","art/ecua4b.jpg","art/e
cua5b.jpg","art/ecua6b.jpg")
var thisPic = 0
function processPrevious() {
if (document.images && thisPic > 0) {
thisPic--
document.myPicture.src=myPix[thisPic]
}
}
function processNext() {
if (document.images && thisPic < 5) {
thisPic++
document.myPicture.src=myPix[thisPic]
}
}
// End hiding script from old browsers -->
</SCRIPT>
</HEAD>
<BODY bgcolor="000000" text=FFFFFF link=66CCFF vlink=FFFFFF alink=FFCC66>
<CENTER>
<IMG SRC="art/ecua1b.jpg" NAME="myPicture"><p>
<A HREF=javascript:processPrevious()>Previous</A>
<A HREF=javascript:processNext()>Next</A>
</H1></CENTER></BODY>
Suzanne Stephens, Stephens Design; Ashland, Oregon
541-552-1192 http://www.KickassDesign.com/ ICQ #8190023
CyberCircus Grand Prize Winners http://www.thecybercircus.com/
Web Page Design for Designers Design Resources: http://www.wpdfd.com/wpdres.htm
Clip Art: http://www.freeimages.com/stephens/
____________________________________________________________________
--------------------------------------------------------------------
Join The Web Consultants Association : Register on our web site Now
Web Consultants Web Site : http://just4u.com/webconsultants
If you lose the instructions All subscription/unsubscribing can be done
directly from our website for all our lists.
---------------------------------------------------------------------