zacharybaehr
02-13-2005, 11:18 PM
I'm attempting the animation with the flipping pages I found on this site, and I have inserted my pictures, but I keep getting white pages with a little red X on them. What am I missing? I have put the HTML language below. At the bottom appears to be my problem. Any solutions?
Zachary
<script type="text/javascript">
/***********************************************
* Book Flip slideshow script- © Ger Versluis 2003
* Permission granted to DynamicDrive.com to feature script
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
/********************************************************
Create a div with transparent place holder in your html
<div id="Book" style="position:relative">
<img src="C:\placeholder.gif" width="144" height="227">
</div>
width = 2*book image width +4 height = book image height+2
Insert onload in body tag
<body onload="ImageBook()">
*********************************************************/
// 7 variables to control behavior
var Book_Image_Width=140;
var Book_Image_Height=225;
var Book_Border=true;
var Book_Border_Color="gray";
var Book_Speed=15;
var Book_NextPage_Delay=1500; //1 second=1000
var Book_Vertical_Turn=0;
// array to specify images and optional links. At least 4
// If Link is not needed keep it ""
Book_Image_Sources=new Array(
"Zachary's stuff\lovenebraskagolf.com\practice\photo1.jpg","http://www.lovenebraskagolf.com",
"Zachary's stuff\lovenebraskagolf.com\practice\photo2.bmp","http://www.playthewest.com",
"Zachary's stuff\lovenebraskagolf.com\practice\photo3.jpg","", //this slide isn't linked
"photo4.jpg","http://www.yahoo.com" // NOTE No comma after last line
);
Zachary
<script type="text/javascript">
/***********************************************
* Book Flip slideshow script- © Ger Versluis 2003
* Permission granted to DynamicDrive.com to feature script
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
/********************************************************
Create a div with transparent place holder in your html
<div id="Book" style="position:relative">
<img src="C:\placeholder.gif" width="144" height="227">
</div>
width = 2*book image width +4 height = book image height+2
Insert onload in body tag
<body onload="ImageBook()">
*********************************************************/
// 7 variables to control behavior
var Book_Image_Width=140;
var Book_Image_Height=225;
var Book_Border=true;
var Book_Border_Color="gray";
var Book_Speed=15;
var Book_NextPage_Delay=1500; //1 second=1000
var Book_Vertical_Turn=0;
// array to specify images and optional links. At least 4
// If Link is not needed keep it ""
Book_Image_Sources=new Array(
"Zachary's stuff\lovenebraskagolf.com\practice\photo1.jpg","http://www.lovenebraskagolf.com",
"Zachary's stuff\lovenebraskagolf.com\practice\photo2.bmp","http://www.playthewest.com",
"Zachary's stuff\lovenebraskagolf.com\practice\photo3.jpg","", //this slide isn't linked
"photo4.jpg","http://www.yahoo.com" // NOTE No comma after last line
);